├── .env.example ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE.md ├── Procfile ├── README.md ├── app.yml ├── jest.config.js ├── package.json ├── src ├── analyzer.ts ├── biohazard-alert.ts ├── cli.ts ├── event-info.ts ├── handler.ts ├── index.ts ├── invalid-environment-error.ts ├── notifier.ts ├── perspective-types.ts └── scores.ts ├── test └── fixtures │ └── issues.opened.json └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: probot run ./lib/index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/README.md -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/app.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/package.json -------------------------------------------------------------------------------- /src/analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/analyzer.ts -------------------------------------------------------------------------------- /src/biohazard-alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/biohazard-alert.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/event-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/event-info.ts -------------------------------------------------------------------------------- /src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/handler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/invalid-environment-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/invalid-environment-error.ts -------------------------------------------------------------------------------- /src/notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/notifier.ts -------------------------------------------------------------------------------- /src/perspective-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/perspective-types.ts -------------------------------------------------------------------------------- /src/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/src/scores.ts -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/biohazard-alert/HEAD/tsconfig.json --------------------------------------------------------------------------------