Skip to content

Commit 74ff6bd

Browse files
committed
Fix github event attribute path.
1 parent 6c2be69 commit 74ff6bd

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
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
JSON: ${{ toJson(github.event) }}
1515
add-label:
16-
if: ${{ github.event.user.login != 'tillahoffmann' }}
16+
if: ${{ github.event.issue.user.login != 'tillahoffmann' }}
1717
runs-on: ubuntu-latest
1818
permissions:
1919
issues: write
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
labels: requires-attention
2525
remove-label:
26-
if: ${{ github.event.user.login == 'tillahoffmann' }}
26+
if: ${{ github.event.issue.user.login == 'tillahoffmann' }}
2727
runs-on: ubuntu-latest
2828
permissions:
2929
issues: write

0 commit comments

Comments
 (0)