Skip to content

Commit 2a2e0a8

Browse files
authored
Fix CI comment workflow after 18196 (#18217)
# Objective - I messed up in #18196 and broke the CI comment workflow ## Solution - Use the correct way to check a step
1 parent 8980be9 commit 2a2e0a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-comment-failures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "result=false" >> $GITHUB_OUTPUT
6363
fi
6464
- name: "Comment on PR"
65-
if: ${{ steps.find-artifact.outputs.result == 'true' && check-last-comment.outputs.result == 'false' }}
65+
if: ${{ steps.find-artifact.outputs.result == 'true' && steps.check-last-comment.outputs.result == 'false' }}
6666
uses: actions/github-script@v7
6767
with:
6868
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)