├── .env.example ├── .github ├── renovate.json └── stale.yml ├── .gitignore ├── .travis.yml ├── README.md ├── app.json ├── docs └── deploy.md ├── index.js ├── package.json └── test ├── fixtures └── issues.opened.json └── index.test.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/.env.example -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/app.json -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probot/autoresponder/HEAD/test/index.test.js --------------------------------------------------------------------------------