├── .gitignore ├── .nowignore ├── LICENSE ├── README.md ├── deploy.sh ├── github_action.js ├── hacktoberfest.js ├── index.js ├── issue_comment.js ├── messages.js ├── now.json ├── package.json ├── pull_request.js ├── pull_request_review.js ├── slash_commands.js └── webhooks.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- 1 | deploy.sh 2 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/deploy.sh -------------------------------------------------------------------------------- /github_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/github_action.js -------------------------------------------------------------------------------- /hacktoberfest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/hacktoberfest.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/index.js -------------------------------------------------------------------------------- /issue_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/issue_comment.js -------------------------------------------------------------------------------- /messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/messages.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/package.json -------------------------------------------------------------------------------- /pull_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/pull_request.js -------------------------------------------------------------------------------- /pull_request_review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/pull_request_review.js -------------------------------------------------------------------------------- /slash_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/slash_commands.js -------------------------------------------------------------------------------- /webhooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/github-bot/HEAD/webhooks.js --------------------------------------------------------------------------------