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 5597b21 commit 8379769
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

concurrency:
group: ci-${{ github.ref }}-${{ github.event.pull_request.number || github.run_number }}
group: ci-${{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: ci-${{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: ci-${{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 8379769

Please sign in to comment.