ci: don't limit concurrency on push events

This commit is contained in:
Alex Rønne Petersen 2026-01-16 11:57:00 +01:00
parent f2beea3b8f
commit 65a4dbc503
No known key found for this signature in database

View file

@ -7,8 +7,10 @@ on:
- master
workflow_dispatch:
# This cancels older workflow runs on pull requests while ensuring that there
# are no concurrency limits on pushes and manual workflow dispatches.
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions: