Add auto assign action

This commit is contained in:
grandeljay 2022-11-04 13:52:57 +01:00
parent e1299bf28d
commit 348b72d364
2 changed files with 17 additions and 17 deletions

View file

@ -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
View 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