mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-05-14 15:01:44 +00:00
18 lines
446 B
YAML
18 lines
446 B
YAML
name: "[PR Management] Auto Assign Reviewer & Assignee"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, ready_for_review]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-assign:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: rancher/gh-issue-mgr/auto-assign-action@c72f2122968cc46f60773cef4b6dcf2983348777 # main
|
|
with:
|
|
configuration-path: .github/auto-assign-config.yaml
|