From eebd1980275c1dc5999ae65dbeb88f2b0a368b84 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 25 Sep 2024 10:29:19 +0200 Subject: [PATCH] Fixed requiring passing tests for canary builds - this disappeared due to a regression in a previous commit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfe97d79e1..11d4f68ec5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -950,7 +950,7 @@ jobs: ] name: Canary runs-on: ubuntu-latest - if: always() && needs.job_setup.outputs.is_canary_branch == 'true' && needs.job_setup.result == 'success' + if: always() && needs.job_setup.outputs.is_canary_branch == 'true' && needs.job_setup.result == 'success' && needs.job_required_tests.result == 'success' steps: - name: Output needs (for debugging) run: echo "${{ toJson(needs) }}"