-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (66 loc) · 2.37 KB
/
labeler.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Uni Issue & PR Labeler
on:
issues:
types: [ opened ]
pull_request:
types: [ opened ]
permissions:
contents: read
issues: write
checks: write
pull-requests: write
jobs:
label-jinsu:
runs-on: ubuntu-latest
steps:
- name: Print Title of PR
run: echo The Title of your PR is ${{ github.event.pull_request.title }}
- name: add label jinsu
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'jinsu4755') }}
with:
labels: 진수🦂
label-2zerozu:
runs-on: ubuntu-latest
steps:
- name: add label 2zerozu
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, '2zerozu') }}
with:
labels: 영주🐼
label-jiyeoon00:
runs-on: ubuntu-latest
steps:
- name: add label jiyeoon00
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'jiyeoon00') }}
with:
labels: 지연🐰
label-tag:
runs-on: ubuntu-latest
steps:
- name: add label Bug
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'Bug:') }}
with:
labels: Bug
- name: add label Chore
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'Chore:') }}
with:
labels: Chore
- name: add label Document
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'Docs:') }}
with:
labels: Document
- name: add label Feature
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'Feat:') }}
with:
labels: Feature
- name: add label Hotfix
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'Hotfix:') }}
with:
labels: Hotfix