Add auto assign action
This commit is contained in:
parent
e1299bf28d
commit
348b72d364
2 changed files with 17 additions and 17 deletions
17
.github/auto-assign.yml
vendored
17
.github/auto-assign.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
# Set to true to add reviewers to pull requests
|
||||
addReviewers: true
|
||||
|
||||
# Set to true to add assignees to pull requests
|
||||
addAssignees: true
|
||||
|
||||
# A list of reviewers to be added to pull requests (GitHub user name)
|
||||
reviewers:
|
||||
- grandeljay
|
||||
|
||||
# A list of keywords to be skipped the process that add reviewers if pull requests include it
|
||||
skipKeywords:
|
||||
- wip
|
||||
|
||||
# A number of reviewers added to the pull request
|
||||
# Set 0 to add all the reviewers (default: 0)
|
||||
numberOfReviewers: 0
|
17
.github/workflows/auto-assign.yml
vendored
Normal file
17
.github/workflows/auto-assign.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: "Auto Assign"
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, ready_for_review]
|
||||
|
||||
jobs:
|
||||
add-reviews:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: kentaro-m/auto-assign-action@v1.2.4
|
||||
with:
|
||||
addReviewers: true
|
||||
addAssignees: author
|
||||
reviewers:
|
||||
- grandeljay
|
||||
skipKeywords:
|
||||
- wip
|
Loading…
Reference in a new issue