Skip to content

Commit

Permalink
fix: issue with concurrent workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 20, 2023
1 parent ec77c89 commit 196318b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ci
on: push

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- 'bindings/**'

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
group: go-bindings-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
Expand Down

0 comments on commit 196318b

Please sign in to comment.