mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2026-01-29 21:49:54 +00:00
19 lines
532 B
YAML
19 lines
532 B
YAML
name: Assign Reviewers for Team
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
assign_reviewer:
|
|
name: Assign Reviewer for PR
|
|
runs-on: ubuntu-latest
|
|
if: |
|
|
github.event.pull_request.draft == false && github.base_ref == 'main'
|
|
&& github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
|
|
&& toJson(github.event.pull_request.requested_reviewers) == '[]'
|
|
steps:
|
|
- uses: kentaro-m/auto-assign-action@v1.2.1
|
|
with:
|
|
configuration-path: '.github/reviewer_list.yml'
|