Skip to content

Commit 93ce2ad

Browse files
committed
Fix github event attribute path.
1 parent b042364 commit 93ce2ad

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,15 +13,15 @@ jobs:
1313
env:
1414
JSON: ${{ toJson(github.event) }}
1515
add-label:
16-
if: ${{ github.event.user.login != 'tillahoffmann' }}
16+
if: ${{ github.event.comment.user.login != 'tillahoffmann' }}
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Add label
2020
uses: actions-ecosystem/action-add-labels@v1
2121
with:
2222
labels: requires-attention
2323
remove-label:
24-
if: ${{ github.event.user.login == 'tillahoffmann' }}
24+
if: ${{ github.event.comment.user.login == 'tillahoffmann' }}
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Remove label

0 commit comments

Comments
 (0)