From 2a3665291e2ba21a61297901364b18762d4cf38b Mon Sep 17 00:00:00 2001 From: Kirill Plis Date: Wed, 15 Jul 2026 11:05:20 +0200 Subject: [PATCH 1/2] fix: rework concurrency --- .github/workflows/kubernetes.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kubernetes.yaml b/.github/workflows/kubernetes.yaml index 501f107..592fa7e 100644 --- a/.github/workflows/kubernetes.yaml +++ b/.github/workflows/kubernetes.yaml @@ -233,7 +233,7 @@ jobs: commit: needs: [initialize, build] environment: ${{ github.event.deployment.payload.env || inputs.env }} - concurrency: commit-${{ inputs.deploymentRepoURL }}-${{ github.sha }} + group: commit-${{ inputs.deploymentRepoURL }}-${{ github.event.deployment.payload.env || inputs.env }} runs-on: ${{ inputs.runner }} timeout-minutes: ${{ inputs.timeoutMinutes }} steps: From c143a0bb56e7ebfcc55f090966d2356c745e985a Mon Sep 17 00:00:00 2001 From: Kirill Plis Date: Wed, 15 Jul 2026 12:39:18 +0200 Subject: [PATCH 2/2] fix statement --- .github/workflows/kubernetes.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/kubernetes.yaml b/.github/workflows/kubernetes.yaml index 592fa7e..604eb8b 100644 --- a/.github/workflows/kubernetes.yaml +++ b/.github/workflows/kubernetes.yaml @@ -233,7 +233,8 @@ jobs: commit: needs: [initialize, build] environment: ${{ github.event.deployment.payload.env || inputs.env }} - group: commit-${{ inputs.deploymentRepoURL }}-${{ github.event.deployment.payload.env || inputs.env }} + concurrency: + group: commit-${{ inputs.deploymentRepoURL }}-${{ github.event.deployment.payload.env || inputs.env }} runs-on: ${{ inputs.runner }} timeout-minutes: ${{ inputs.timeoutMinutes }} steps: