Skip to content

Commit

Permalink
remove concurrency skip causing duplicate cancel working against skip…
Browse files Browse the repository at this point in the history
…-duplicate-actions
  • Loading branch information
fmigneault-crim committed Nov 9, 2023
1 parent 40c34cd commit f163b3f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ on:
- release
- workflow_dispatch

# handled by skip-duplicate-actions instead with more options
# cancel the current workflow if another commit was pushed on the same PR or reference
# uses the GitHub workflow name to avoid collision with other workflows running on the same PR/reference
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
#concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# cancel-in-progress: true

jobs:
# see: https://github.com/fkirc/skip-duplicate-actions
Expand Down

0 comments on commit f163b3f

Please sign in to comment.