From c30a827dd8cd970dc382285d70e61c016b6b0ff4 Mon Sep 17 00:00:00 2001 From: Tom Blake Date: Mon, 9 Dec 2024 11:33:25 +1300 Subject: [PATCH] Allow concurrent workflows Currently we can't have more than 1 CI/CD workflow run in progress. This slows down our deployments. We have existing internal controls to guard against older deployments overwriting newer ones. Test plan: - Confirm workflows are allowed to run concurrently --- .github/workflows/master.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 6273c4d2d..4d45f6a16 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -13,10 +13,6 @@ permissions: pages: write id-token: write -concurrency: - group: "pages" - cancel-in-progress: false - jobs: setup: continue-on-error: true