We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9490a commit e9c2e0dCopy full SHA for e9c2e0d
.github/workflows/labels.yml
@@ -0,0 +1,26 @@
1
+name: Automatically add or remove labels
2
+on:
3
+ issue_comment:
4
+ types:
5
+ - created
6
+jobs:
7
+ add-label:
8
+ if: github.event.actor.login != 'tillahoffmann'
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ steps:
13
+ - name: Add label
14
+ uses: actions-ecosystem/action-add-labels@v1
15
+ with:
16
+ labels: requires-attention
17
+ remove-label:
18
+ if: github.event.actor.login == 'tillahoffmann'
19
20
21
22
23
+ - name: Remove label
24
+ uses: actions-ecosystem/action-remove-labels@v1
25
26
0 commit comments