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