Skip to content

Commit

Permalink
fixup! job concurrency for pr/push flows
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Mar 12, 2024
1 parent 54b96b9 commit 5bde323
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/on.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
branches:
- master

concurrency:
group: guava-pr-${{ github.event.number }}
cancel-in-progress: true

permissions:
contents: read

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on.push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
branches:
- master

concurrency:
group: guava-push-${{ github.sha }}
cancel-in-progress: true

permissions:
contents: read

Expand Down

0 comments on commit 5bde323

Please sign in to comment.