zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 65a4dbc5034cff2cd9f258f764a0e684cb22ac97 (tree)
parent f2beea3b8fda622cd35166491609d324dbd79dde
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 16 Jan 2026 11:57:00 +0100

ci: don't limit concurrency on push events

Diffstat:
M.forgejo/workflows/ci.yaml | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml @@ -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: