Skip to content

Commit

Permalink
try fixing concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Feb 26, 2024
1 parent 8379769 commit 6646b8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_call:

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

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_call:

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

# For now always take the "reduced" form of the version, even for those
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_call:

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

# For now always take the "reduced" form of the version, even for those
Expand Down

0 comments on commit 6646b8c

Please sign in to comment.