From 0d294d29ba64d875bccb0524a7d94687d15c8b0d Mon Sep 17 00:00:00 2001 From: Matej Almasi <¨almasi.mato@gmail.com¨> Date: Mon, 9 Dec 2024 21:48:49 +0100 Subject: [PATCH] Replace multiline conditional with single line for issuing warnings in PR workflow --- .github/workflows/pr-main.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/pr-main.yml b/.github/workflows/pr-main.yml index 562fc2a..f4031b6 100644 --- a/.github/workflows/pr-main.yml +++ b/.github/workflows/pr-main.yml @@ -96,11 +96,7 @@ jobs: continue-on-error: true - name: Issue warnings for beta/ nightly fails - if: > - ${{ steps.build-beta.outcome == 'failure' || - steps.test-beta.outcome == 'failure' || - steps.build-nightly.outcome == 'failure' || - steps.test-nightly.outcome == 'failure'}} + if: ${{ steps.build-beta.outcome == 'failure' || steps.test-beta.outcome == 'failure' || steps.build-nightly.outcome == 'failure' || steps.test-nightly.outcome == 'failure' }} uses: actions/github-script@v7 with: script: |