We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c678bbb commit 264ae88Copy full SHA for 264ae88
1 file changed
.github/workflows/labels.yml
@@ -5,7 +5,7 @@ on:
5
- created
6
jobs:
7
add-label:
8
- if: github.event.actor.login != 'tillahoffmann'
+ if: ${{ github.event.actor.login != 'tillahoffmann' }}
9
runs-on: ubuntu-latest
10
permissions:
11
issues: write
@@ -15,7 +15,7 @@ jobs:
15
with:
16
labels: requires-attention
17
remove-label:
18
- if: github.event.actor.login == 'tillahoffmann'
+ if: ${{ github.event.actor.login == 'tillahoffmann' }}
19
20
21
0 commit comments