├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── app.json ├── etc └── defaults.json ├── index.js ├── lib ├── format-parser.js ├── freeze.js └── github-helper.js ├── package.json ├── sample-probot-snooze.yml └── test ├── fixtures ├── issue_comment.created.json └── issues.opened.json └── index.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | extends: "eslint-config-probot" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | private-key.pem 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/app.json -------------------------------------------------------------------------------- /etc/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/etc/defaults.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/index.js -------------------------------------------------------------------------------- /lib/format-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/lib/format-parser.js -------------------------------------------------------------------------------- /lib/freeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/lib/freeze.js -------------------------------------------------------------------------------- /lib/github-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/lib/github-helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/package.json -------------------------------------------------------------------------------- /sample-probot-snooze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/sample-probot-snooze.yml -------------------------------------------------------------------------------- /test/fixtures/issue_comment.created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/test/fixtures/issue_comment.created.json -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbjonesjr/probot-snooze/HEAD/test/index.js --------------------------------------------------------------------------------