From b6131f0631dc586d5ea932d581215ef0237c4b55 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 7 Jul 2023 15:26:56 +0200 Subject: [PATCH] Fixed canary build triggering - this previously wouldn't trigger if any of the `needs` are skipped - this switches to waiting for the actual job which checks if all required jobs were completed successfully --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2578156b8d..ac27e6e681 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -724,12 +724,7 @@ jobs: needs: [ job_get_metadata, - job_lint, - job_ghost-cli, - job_admin-tests, - job_unit-tests, - job_database-tests, - job_regression-tests + job_required_tests ] if: needs.job_get_metadata.outputs.is_canary_branch == 'true' name: Canary