Skip to content

Commit 00480ff

Browse files
committed
Fixed workflow concurrency
1 parent fbed113 commit 00480ff

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/python-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
push:
77
branches: ["master"]
88
concurrency:
9-
group: ${{ github.ref }}
9+
group: ${{ github.workflow }}-${{ github.ref }}
1010
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1111

1212

.github/workflows/python-push.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Python Push
33
on:
44
push:
55
branches: ["master"]
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
69

710
jobs:
811
test:

0 commit comments

Comments
 (0)