File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
19
19
- name : Add label
20
20
uses : actions-ecosystem/action-add-labels@v1
21
21
with :
22
- labels : requires- attention
22
+ labels : ' 👀 requires attention'
23
23
remove-label :
24
24
if : ${{ github.event.comment.user.login == 'tillahoffmann' }}
25
25
runs-on : ubuntu-latest
26
26
steps :
27
27
- name : Remove label
28
28
uses : actions-ecosystem/action-remove-labels@v1
29
29
with :
30
- labels : requires- attention
30
+ labels : ' 👀 requires attention'
Original file line number Diff line number Diff line change
1
+ name : Automatically add triage labels to new issues and pull requests
2
+ on :
3
+ issues :
4
+ types :
5
+ - opened
6
+ jobs :
7
+ add-label :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Add label
11
+ uses : actions-ecosystem/action-add-labels@v1
12
+ with :
13
+ labels : ' 🔀 requires triage'
You can’t perform that action at this time.
0 commit comments