Auto-assign github PR reviewers and assignee (#2758)

Use a GitHub Action to automatically assign GitHub PRs to the author, as
well as add reviewers.

Signed-off-by: Nolan Brubaker <brubakern@vmware.com>
This commit is contained in:
Nolan Brubaker
2020-07-24 12:58:44 -07:00
committed by GitHub
parent 9011b192e9
commit cffb639380
2 changed files with 16 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
addReviewers: true
addAssignees: author
reviewers:
- nrb
- ashish-amarnath
- carlisia
+9
View File
@@ -0,0 +1,9 @@
name: 'Auto Assign PRs'
on: pull_request
jobs: add-reviewers:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.1.1
with:
configuration-path: ".github/auto_assign.yml"