Add auto assign reviewer workflow (#346)

Signed-off-by: Andy Lee <andy.lee@suse.com>
This commit is contained in:
Andy Lee 2025-06-25 11:13:18 +08:00 committed by GitHub
parent c88a083e04
commit 7aae6264f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 0 deletions

7
.github/auto-assign-config.yaml vendored Normal file
View File

@ -0,0 +1,7 @@
addAssignees: author
addReviewers: true
numberOfReviewers: 0
reviewers:
- a110605
- houhoucoop
- NickChungSUSE

View File

@ -0,0 +1,16 @@
name: "[PR Management] Auto Assign Reviewer"
on:
pull_request_target:
types: [opened, ready_for_review]
permissions:
pull-requests: write
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- uses: rancher/gh-issue-mgr/auto-assign-action@main
with:
configuration-path: .github/auto-assign-config.yaml