From 28bd50b64cad73378d995722729632fe384c4f02 Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 7 Oct 2024 20:28:46 +0200 Subject: [PATCH] CI: Fix action output See https://github.com/Cockatrice/Cockatrice/pull/5124 --- .github/workflows/update_links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_links.yml b/.github/workflows/update_links.yml index 89eee65..002b7d3 100644 --- a/.github/workflows/update_links.yml +++ b/.github/workflows/update_links.yml @@ -58,9 +58,9 @@ jobs: env: STATUS: ${{ steps.create_pr.outputs.pull-request-operation }} run: | - if [[ "$STATUS" == "" ]]; then + if [[ "$STATUS" == "none" ]]; then echo "PR #${{ steps.create_pr.outputs.pull-request-number }} unchanged!" >> $GITHUB_STEP_SUMMARY else echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!" >> $GITHUB_STEP_SUMMARY fi - echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY \ No newline at end of file + echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY