From e2aeccb8a29fbfb16a0aab7fa360990817d50134 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 12:32:39 +0000 Subject: [PATCH 1/2] Initial plan From 134597779df843d38891961e59c0161411d98bdc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 12:35:36 +0000 Subject: [PATCH 2/2] Add concurrency groups to deploy-development and deploy-production jobs Co-authored-by: BenjaminMichaelis <22186029+BenjaminMichaelis@users.noreply.github.com> --- .github/workflows/Build-Test-And-Deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/Build-Test-And-Deploy.yml b/.github/workflows/Build-Test-And-Deploy.yml index 93b2a16c..d9d43c6e 100644 --- a/.github/workflows/Build-Test-And-Deploy.yml +++ b/.github/workflows/Build-Test-And-Deploy.yml @@ -80,6 +80,9 @@ jobs: if: github.event_name != 'pull_request_target' && github.event_name != 'pull_request' runs-on: ubuntu-latest needs: build-and-test + concurrency: + group: deploy-development + cancel-in-progress: false environment: name: "Development" @@ -174,6 +177,9 @@ jobs: if: github.event_name != 'pull_request_target' && github.event_name != 'pull_request' runs-on: ubuntu-latest needs: [deploy-development] + concurrency: + group: deploy-production + cancel-in-progress: false environment: name: "Production"