ci: add auto reviewer

This commit is contained in:
EvolutionX
2022-09-24 10:36:19 +05:30
parent 2a444fd21d
commit ff4d2a608a
2 changed files with 18 additions and 0 deletions

7
.github/auto_assign.yml vendored Normal file
View File

@@ -0,0 +1,7 @@
addReviewers: true
reviewers:
- EvolutionX-10
- jacoobes
numberOfReviewers: 0

11
.github/workflows/auto-review.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
name: 'PR Auto Review'
on:
pull_request_target:
jobs:
pr-auto-review:
name: PR Auto Review
runs-on: ubuntu-latest
steps:
- name: Automatically assign reviewers
if: github.event.action == 'opened'
uses: kentaro-m/auto-assign-action@v1.2.1