Skip to content

Commit 62cc2b2

Browse files
committed
Add triage label to all issues and pull requests.
1 parent 5903edb commit 62cc2b2

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/labels.yml renamed to .github/workflows/attention-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- name: Add label
2020
uses: actions-ecosystem/action-add-labels@v1
2121
with:
22-
labels: requires-attention
22+
labels: '👀 requires attention'
2323
remove-label:
2424
if: ${{ github.event.comment.user.login == 'tillahoffmann' }}
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Remove label
2828
uses: actions-ecosystem/action-remove-labels@v1
2929
with:
30-
labels: requires-attention
30+
labels: '👀 requires attention'

.github/workflows/triage-label.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)