├── .env.example ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yml ├── azure-pipelines.yml ├── index.js ├── package.json └── test ├── fixtures ├── issue.get.json ├── issues.opened.json ├── pull_request.review_requested.json ├── pull_request.synchronize.json ├── pull_request_reviews.submitted.no_consensus.json ├── pull_request_reviews.submitted.no_consensus2.json └── teams_qa.members.json └── index.test.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/README.md -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/app.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/issue.get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/issue.get.json -------------------------------------------------------------------------------- /test/fixtures/issues.opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/issues.opened.json -------------------------------------------------------------------------------- /test/fixtures/pull_request.review_requested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/pull_request.review_requested.json -------------------------------------------------------------------------------- /test/fixtures/pull_request.synchronize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/pull_request.synchronize.json -------------------------------------------------------------------------------- /test/fixtures/pull_request_reviews.submitted.no_consensus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/pull_request_reviews.submitted.no_consensus.json -------------------------------------------------------------------------------- /test/fixtures/pull_request_reviews.submitted.no_consensus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/pull_request_reviews.submitted.no_consensus2.json -------------------------------------------------------------------------------- /test/fixtures/teams_qa.members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/fixtures/teams_qa.members.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/get-consensus/HEAD/test/index.test.js --------------------------------------------------------------------------------