├── .eslintrc ├── .travis.yml ├── CONTRIBUTING ├── LICENSE ├── OWNERS.yaml ├── README.md ├── app.yaml ├── gce └── startup-script.sh ├── index.js ├── package.json ├── src ├── git.js ├── github.js ├── owner.js └── repo-file.js ├── test ├── fixtures │ ├── actions │ │ ├── opened.35.json │ │ ├── opened.36.author-is-owner.json │ │ ├── pull_request_review.35.submitted.json │ │ └── rerequested.35.json │ ├── check-runs │ │ ├── check-runs.create.json │ │ ├── check-runs.get.35.empty.json │ │ ├── check-runs.get.35.json │ │ └── check-runs.get.35.multiple.json │ ├── files │ │ ├── files.35.json │ │ ├── files.35.multiple.json │ │ └── files.36.json │ ├── pulls │ │ └── pull_request.35.json │ ├── reviews │ │ ├── reviews.35.approved.json │ │ └── reviews.35.json │ └── teams │ │ └── teams.json └── index.test.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS.yaml: -------------------------------------------------------------------------------- 1 | - erwinmombay 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/app.yaml -------------------------------------------------------------------------------- /gce/startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/gce/startup-script.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/src/git.js -------------------------------------------------------------------------------- /src/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/src/github.js -------------------------------------------------------------------------------- /src/owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/src/owner.js -------------------------------------------------------------------------------- /src/repo-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/src/repo-file.js -------------------------------------------------------------------------------- /test/fixtures/actions/opened.35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/actions/opened.35.json -------------------------------------------------------------------------------- /test/fixtures/actions/opened.36.author-is-owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/actions/opened.36.author-is-owner.json -------------------------------------------------------------------------------- /test/fixtures/actions/pull_request_review.35.submitted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/actions/pull_request_review.35.submitted.json -------------------------------------------------------------------------------- /test/fixtures/actions/rerequested.35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/actions/rerequested.35.json -------------------------------------------------------------------------------- /test/fixtures/check-runs/check-runs.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/check-runs/check-runs.create.json -------------------------------------------------------------------------------- /test/fixtures/check-runs/check-runs.get.35.empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/check-runs/check-runs.get.35.empty.json -------------------------------------------------------------------------------- /test/fixtures/check-runs/check-runs.get.35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/check-runs/check-runs.get.35.json -------------------------------------------------------------------------------- /test/fixtures/check-runs/check-runs.get.35.multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/check-runs/check-runs.get.35.multiple.json -------------------------------------------------------------------------------- /test/fixtures/files/files.35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/files/files.35.json -------------------------------------------------------------------------------- /test/fixtures/files/files.35.multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/files/files.35.multiple.json -------------------------------------------------------------------------------- /test/fixtures/files/files.36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/files/files.36.json -------------------------------------------------------------------------------- /test/fixtures/pulls/pull_request.35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/pulls/pull_request.35.json -------------------------------------------------------------------------------- /test/fixtures/reviews/reviews.35.approved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/fixtures/reviews/reviews.35.approved.json -------------------------------------------------------------------------------- /test/fixtures/reviews/reviews.35.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/fixtures/teams/teams.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/test/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/github-owners-bot/HEAD/yarn.lock --------------------------------------------------------------------------------