Skip to content

Commit 79c1be0

Browse files
committed
fixed concurrency group
1 parent c5e3843 commit 79c1be0

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/build-node.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ concurrency:
2828

2929
jobs:
3030
build-node:
31+
concurrency:
32+
group: "node-${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}"
33+
cancel-in-progress: true
3134
permissions:
3235
id-token: write
3336
contents: write

.github/workflows/build-python.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ concurrency:
2828

2929
jobs:
3030
build-python:
31+
concurrency:
32+
group: "python-${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}"
33+
cancel-in-progress: true
34+
permissions:
35+
id-token: write
36+
contents: write
3137
runs-on: ubuntu-20.04
3238
steps:
3339
# checkout specific source repository

0 commit comments

Comments
 (0)