From 500b694cc6de0e829dc9bc041149c5896fdd8c42 Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 7 Oct 2024 20:48:43 +0200 Subject: [PATCH] CI: Fix logic in translation action after dependency update (#5124) * Update translations-pull.yml * Update translations-push.yml --- .github/workflows/translations-pull.yml | 2 +- .github/workflows/translations-push.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/translations-pull.yml b/.github/workflows/translations-pull.yml index 0de9067aa..3aad12998 100644 --- a/.github/workflows/translations-pull.yml +++ b/.github/workflows/translations-pull.yml @@ -64,7 +64,7 @@ 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 diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml index bc69f73b7..b0c2f62af 100644 --- a/.github/workflows/translations-push.yml +++ b/.github/workflows/translations-push.yml @@ -79,7 +79,7 @@ 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