├── .env.example ├── .githint.json ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── RELEASE_TEMPLATE.md ├── .gitignore ├── .sequelizerc ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yml ├── database ├── config │ └── config.js ├── migrations │ ├── 20190209220258-create-installation.js │ └── 20190209231258-create-repository.js ├── models │ ├── index.js │ ├── installation.js │ └── repository.js └── seeders │ └── 20190209220258-create-installation.js ├── index.js ├── package.json ├── test ├── fixtures │ ├── check_run.created.json │ └── check_suite.requested.json └── index.test.js └── utils.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.githint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.githint.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.github/RELEASE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | .env 4 | .DS_Store 5 | .vscode 6 | private.md 7 | todo.txt 8 | -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.sequelizerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/app.yml -------------------------------------------------------------------------------- /database/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/config/config.js -------------------------------------------------------------------------------- /database/migrations/20190209220258-create-installation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/migrations/20190209220258-create-installation.js -------------------------------------------------------------------------------- /database/migrations/20190209231258-create-repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/migrations/20190209231258-create-repository.js -------------------------------------------------------------------------------- /database/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/models/index.js -------------------------------------------------------------------------------- /database/models/installation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/models/installation.js -------------------------------------------------------------------------------- /database/models/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/database/models/repository.js -------------------------------------------------------------------------------- /database/seeders/20190209220258-create-installation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/check_run.created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/test/fixtures/check_run.created.json -------------------------------------------------------------------------------- /test/fixtures/check_suite.requested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/test/fixtures/check_suite.requested.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/test/index.test.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chieze-Franklin/githint-bot/HEAD/utils.js --------------------------------------------------------------------------------