mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 01:24:49 +01:00
ci: don't limit concurrency on push events
This commit is contained in:
parent
f2beea3b8f
commit
65a4dbc503
1 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue