1 parent 5903edb commit 62cc2b2Copy full SHA for 62cc2b2
2 files changed
.github/workflows/labels.yml .github/workflows/attention-label.yml.github/workflows/labels.yml renamed to .github/workflows/attention-label.yml
@@ -19,12 +19,12 @@ jobs:
19
- name: Add label
20
uses: actions-ecosystem/action-add-labels@v1
21
with:
22
- labels: requires-attention
+ labels: '👀 requires attention'
23
remove-label:
24
if: ${{ github.event.comment.user.login == 'tillahoffmann' }}
25
runs-on: ubuntu-latest
26
steps:
27
- name: Remove label
28
uses: actions-ecosystem/action-remove-labels@v1
29
30
.github/workflows/triage-label.yml
@@ -0,0 +1,13 @@
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'
0 commit comments