├── .github └── config.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── IssueBodyChecker.js ├── PullRequestBodyChecker.js ├── defaultConfig.js └── getComment.js ├── package.json └── test ├── events ├── issueFailEvent.json ├── issueFirstTemplateBodyEvent.json ├── issueSecondTemplateBodyEvent.json ├── issueSuccessEvent.json ├── issueTemplateBodyEvent.json ├── prFailEvent.json ├── prSuccessEvent.json └── prTemplateBodyEvent.json └── index.js /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | *.pem 4 | .DS_Store 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/index.js -------------------------------------------------------------------------------- /lib/IssueBodyChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/lib/IssueBodyChecker.js -------------------------------------------------------------------------------- /lib/PullRequestBodyChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/lib/PullRequestBodyChecker.js -------------------------------------------------------------------------------- /lib/defaultConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/lib/defaultConfig.js -------------------------------------------------------------------------------- /lib/getComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/lib/getComment.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/package.json -------------------------------------------------------------------------------- /test/events/issueFailEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/issueFailEvent.json -------------------------------------------------------------------------------- /test/events/issueFirstTemplateBodyEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/issueFirstTemplateBodyEvent.json -------------------------------------------------------------------------------- /test/events/issueSecondTemplateBodyEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/issueSecondTemplateBodyEvent.json -------------------------------------------------------------------------------- /test/events/issueSuccessEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/issueSuccessEvent.json -------------------------------------------------------------------------------- /test/events/issueTemplateBodyEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/issueTemplateBodyEvent.json -------------------------------------------------------------------------------- /test/events/prFailEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/prFailEvent.json -------------------------------------------------------------------------------- /test/events/prSuccessEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/prSuccessEvent.json -------------------------------------------------------------------------------- /test/events/prTemplateBodyEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/events/prTemplateBodyEvent.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behaviorbot/request-info/HEAD/test/index.js --------------------------------------------------------------------------------