chore(workflow): add auto-assign configuration
According to kentaro-m/auto-assign-action#55 the auto-assign workflow needs a configuration file to run.
This commit is contained in:
parent
7f330ba7a4
commit
0634a79f24
3 changed files with 18 additions and 17 deletions
6
.github/auto-assign-configuration.yml
vendored
Normal file
6
.github/auto-assign-configuration.yml
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
addReviewers: true
|
||||||
|
addAssignees: author
|
||||||
|
reviewers:
|
||||||
|
- "grandeljay"
|
||||||
|
skipKeywords:
|
||||||
|
- wip
|
17
.github/auto_assign.yml
vendored
17
.github/auto_assign.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
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
|
|
12
.github/workflows/auto-assign.yml
vendored
Normal file
12
.github/workflows/auto-assign.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
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:
|
||||||
|
configuration-path: ".github/auto-assign-configuration.yml"
|
Loading…
Reference in a new issue