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:
grandeljay 2023-03-12 11:15:49 +01:00
parent 7f330ba7a4
commit 0634a79f24
3 changed files with 18 additions and 17 deletions

6
.github/auto-assign-configuration.yml vendored Normal file
View file

@ -0,0 +1,6 @@
addReviewers: true
addAssignees: author
reviewers:
- "grandeljay"
skipKeywords:
- wip

View file

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