From 2a2e0a855562612cb59176959b5807f0530eecc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Sun, 9 Mar 2025 23:50:57 +0100 Subject: [PATCH] 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 --- .github/workflows/ci-comment-failures.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-comment-failures.yml b/.github/workflows/ci-comment-failures.yml index c39ad70a88..f1fb5a54be 100644 --- a/.github/workflows/ci-comment-failures.yml +++ b/.github/workflows/ci-comment-failures.yml @@ -62,7 +62,7 @@ jobs: echo "result=false" >> $GITHUB_OUTPUT fi - name: "Comment on PR" - if: ${{ steps.find-artifact.outputs.result == 'true' && check-last-comment.outputs.result == 'false' }} + if: ${{ steps.find-artifact.outputs.result == 'true' && steps.check-last-comment.outputs.result == 'false' }} uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }}