├── .env.example ├── .github ├── CODEOWNERS ├── deploy.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitkeep └── _config.yml ├── index.js ├── now.json ├── package.json └── test ├── fixtures ├── bug_label.applied.json ├── deploy-bad-config.yml ├── deploy-test_label.applied.json └── deploy.yml └── index.test.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hiimbex @bkeepers 2 | -------------------------------------------------------------------------------- /.github/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/.github/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/index.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/bug_label.applied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/test/fixtures/bug_label.applied.json -------------------------------------------------------------------------------- /test/fixtures/deploy-bad-config.yml: -------------------------------------------------------------------------------- 1 | badconfigfile: ok 2 | -------------------------------------------------------------------------------- /test/fixtures/deploy-test_label.applied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/test/fixtures/deploy-test_label.applied.json -------------------------------------------------------------------------------- /test/fixtures/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/test/fixtures/deploy.yml -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helaili/deploy/HEAD/test/index.test.js --------------------------------------------------------------------------------