From b810f6e8d1f9b06cd7cbebd4c68dbf3c1cfd2418 Mon Sep 17 00:00:00 2001 From: edoapra Date: Mon, 26 Jan 2026 17:01:38 -0800 Subject: [PATCH] fix conditional syntax --- .github/workflows/github_actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index ada609ef49..e893edeb21 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -520,6 +520,6 @@ jobs: run: | ./travis/run_qas.sh - name: Check if QA testing has failed - if: ${{ failure() }} && steps.qa_test.outcome == 'failure' + if: ${{ failure() && steps.qa_test.outcome == 'failure' }} run: | ./travis/check_qas.sh