├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.yml ├── index.html ├── index.js ├── lib ├── logger.js └── non_friendly.js ├── package.json ├── test ├── fixtures │ └── issues.opened.json └── index.test.js └── travis.yml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/README.md -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/app.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/index.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/non_friendly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/lib/non_friendly.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/test/index.test.js -------------------------------------------------------------------------------- /travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melanierogan/inclusive_bot/HEAD/travis.yml --------------------------------------------------------------------------------