Skip to content

Commit 5bde323

Browse files
committed
fixup! job concurrency for pr/push flows
Signed-off-by: Sam Gammon <[email protected]>
1 parent 54b96b9 commit 5bde323

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/on.pr.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- master
1515

16+
concurrency:
17+
group: guava-pr-${{ github.event.number }}
18+
cancel-in-progress: true
19+
1620
permissions:
1721
contents: read
1822

.github/workflows/on.push.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- master
1515

16+
concurrency:
17+
group: guava-push-${{ github.sha }}
18+
cancel-in-progress: true
19+
1620
permissions:
1721
contents: read
1822

0 commit comments

Comments
 (0)