├── .env.example ├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── helPR.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── fixtures │ ├── pull-request.closed.json │ ├── pull-request.merged.json │ ├── pull-request.opened.json │ └── pull_request.edited.json ├── index.test.js ├── parse-pr.test.js └── pull-handler.test.js ├── docs └── deploy.md ├── package.json ├── screenshots ├── usage-img1.jpg └── usage-img2.jpg └── src ├── default-config.js ├── index.js ├── parse-pr.js └── pull-handler.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/helPR.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.idea/helPR.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/fixtures/pull-request.closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/fixtures/pull-request.closed.json -------------------------------------------------------------------------------- /__tests__/fixtures/pull-request.merged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/fixtures/pull-request.merged.json -------------------------------------------------------------------------------- /__tests__/fixtures/pull-request.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/fixtures/pull-request.opened.json -------------------------------------------------------------------------------- /__tests__/fixtures/pull_request.edited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/fixtures/pull_request.edited.json -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/index.test.js -------------------------------------------------------------------------------- /__tests__/parse-pr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/parse-pr.test.js -------------------------------------------------------------------------------- /__tests__/pull-handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/__tests__/pull-handler.test.js -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/usage-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/screenshots/usage-img1.jpg -------------------------------------------------------------------------------- /screenshots/usage-img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/screenshots/usage-img2.jpg -------------------------------------------------------------------------------- /src/default-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/src/default-config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parse-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/src/parse-pr.js -------------------------------------------------------------------------------- /src/pull-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarky/helpr/HEAD/src/pull-handler.js --------------------------------------------------------------------------------