From 68b4909dffae260c6c5e9478e168b9c690c7fb47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Szpiech?= Date: Mon, 9 Oct 2023 17:24:18 +0200 Subject: [PATCH] chore(ci): fix badly written condition in workflow (#5002) --- .github/workflows/ci-cd-trigger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd-trigger.yml b/.github/workflows/ci-cd-trigger.yml index ed451d091..c3cc09c91 100644 --- a/.github/workflows/ci-cd-trigger.yml +++ b/.github/workflows/ci-cd-trigger.yml @@ -206,7 +206,7 @@ jobs: name: '(CI) console python' uses: ./.github/workflows/console-test-run.yml secrets: inherit - if: ${{ needs.check-e2e-needed.outputs.run-tests == 'true' }} && ${{ contains(fromJSON(needs.build-sources.outputs.projects), 'trading') }} + if: needs.check-e2e-needed.outputs.run-tests == 'true' && contains(needs.build-sources.outputs.projects, 'trading') with: github-sha: ${{ github.event.pull_request.head.sha || github.sha }}