From 9eb7d4af1341f684741ed6b56493438573667b0c Mon Sep 17 00:00:00 2001 From: Dylan Rogowsky Date: Thu, 27 Feb 2025 16:30:13 -0700 Subject: [PATCH] ALCS-2476: Reimplement concurrency groups --- .github/workflows/cd.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 4c12980754..4d70599e18 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,9 +12,15 @@ jobs: with: environment: test secrets: inherit + concurrency: + group: deploy-test + cancel-in-progress: true deploy-prod: needs: deploy-test uses: ./.github/workflows/deploy.yml with: environment: prod - secrets: inherit \ No newline at end of file + secrets: inherit + concurrency: + group: deploy-prod + cancel-in-progress: true \ No newline at end of file