Skip to content

Commit 264ae88

Browse files
committed
Wrap username check in double braces.
1 parent c678bbb commit 264ae88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- created
66
jobs:
77
add-label:
8-
if: github.event.actor.login != 'tillahoffmann'
8+
if: ${{ github.event.actor.login != 'tillahoffmann' }}
99
runs-on: ubuntu-latest
1010
permissions:
1111
issues: write
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
labels: requires-attention
1717
remove-label:
18-
if: github.event.actor.login == 'tillahoffmann'
18+
if: ${{ github.event.actor.login == 'tillahoffmann' }}
1919
runs-on: ubuntu-latest
2020
permissions:
2121
issues: write

0 commit comments

Comments
 (0)