-
Notifications
You must be signed in to change notification settings - Fork 8
38 lines (36 loc) ยท 1.12 KB
/
assign-reviewer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Assign Reviewer By Label
on:
pull_request:
types:
- opened
- edited
- labeled
- unlabeled
jobs:
assign-reviewer:
runs-on: ubuntu-latest
steps:
- name: All Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: BGuga, seokjin8678, xxeol2, carsago, SeongHoonC, EmilyCh0, re4rk
assignees: ${{ github.event.pull_request.user.login }}
includeLabels: ALL
excludeLabels: WIP
- name: Android Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: SeongHoonC, EmilyCh0, re4rk
assignees: ${{ github.event.pull_request.user.login }}
includeLabels: AN
excludeLabels: WIP
- name: Backend Label
uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reviewers: BGuga, seokjin8678, xxeol2, carsago
assignees: ${{ github.event.pull_request.user.login }}
includeLabels: BE
excludeLabels: WIP