├── .github ├── renovate.json ├── stale.yml └── workflows │ └── npm-test.js.yml ├── .gitignore ├── .node-version ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── app.json ├── index.js ├── lib └── reminders.js ├── package.json └── test ├── fixtures ├── issue_comment.created.json └── issues.opened.json └── index.test.js /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/npm-test.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/.github/workflows/npm-test.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | private-key.pem 4 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.9.0 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/index.js -------------------------------------------------------------------------------- /lib/reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/lib/reminders.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/issue_comment.created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/test/fixtures/issue_comment.created.json -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/reminders/HEAD/test/index.test.js --------------------------------------------------------------------------------