Skip to content

Commit

Permalink
ci: add event name to concurrency group (#5097)
Browse files Browse the repository at this point in the history
In order to avoid unexpected workflow cancellations due to concurrency
configuration, add the event name to the concurrency group.`
  • Loading branch information
ferrarimarco committed Jan 5, 2024
1 parent cf2038d commit f6bc054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.images.target }}
group: ${{ github.workflow }}-${{ github.ref }}-{{ github.event_name }}-${{ matrix.images.target }}
cancel-in-progress: true
strategy:
fail-fast: false
Expand Down

0 comments on commit f6bc054

Please sign in to comment.