Skip to content

Commit 8f7467e

Browse files
committed
Fix concurrency group
1 parent db90003 commit 8f7467e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-docker-artifacts-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
required: false
3030

3131
concurrency:
32-
group: "build-push-${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ github.event.inputs.repository }}-${{ github.event.inputs.customer }}-${{ github.event.inputs.image_tag }}"
32+
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.repository }}-${{ inputs.customer }}-${{ inputs.image_tag }}"
3333
cancel-in-progress: true
3434

3535
env:

.github/workflows/build-docker-artifacts-trigger-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
required: false
2727

2828
concurrency:
29-
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ github.event.inputs.branch }}-${{ github.event.inputs.push_to }}"
29+
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}-${{ inputs.push_to }}"
3030
cancel-in-progress: true
3131

3232
env:

.github/workflows/build-docker-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
description: "Token to use for the checkout actions to access private repositories"
3131

3232
concurrency:
33-
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ github.event.inputs.branch }}-${{ github.event.inputs.builds }}-${{ github.event.inputs.push_to }}"
33+
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}-${{ inputs.builds }}-${{ inputs.push_to }}"
3434
cancel-in-progress: true
3535

3636
env:

0 commit comments

Comments
 (0)