Skip to content

Commit f6d498d

Browse files
chore: corrected IF statement for conversation GitHub Action (Unity-Technologies#3379)
This is a quick PR to correct IF statement in our github action because with current state it was called (and failed) when PR was commented
1 parent d115d00 commit f6d498d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/conversation-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
jobs:
2222
conversation_labels:
2323
name: Calculate and update conversation labels of the issue
24-
if: ${{ !github.event.issue.pull_request }} && ${{ github.event.issue.state == 'open' }}
24+
if: ${{ !github.event.issue.pull_request && github.event.issue.state == 'open' }}
2525
runs-on: ubuntu-latest
2626
permissions:
2727
issues: write

0 commit comments

Comments
 (0)