chore(ci): explicit concurrency groups now the shared runner holds 2 slots
ci / ci (pull_request) Successful in 4m8s
ci / ci (pull_request) Successful in 4m8s
Capacity 1 on the ovh-main runner was the implicit mutex serializing every workflow; sow-platform#189 raises it to 2. Side-effectful workflows get a serialized group; PR-triggered checks get a per-ref group with cancel so a superseded head frees its slot. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -7,6 +7,12 @@ on:
|
||||
|
||||
permissions: read-all
|
||||
|
||||
# One run per ref: a new push obsoletes the run on the old head, so cancel it
|
||||
# and free the runner slot for the run that can still matter.
|
||||
concurrency:
|
||||
group: ci-${{ gitea.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: nix-docker
|
||||
|
||||
Reference in New Issue
Block a user