Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Benchmarks

# Cancel superseded PR runs; protect main + scheduled runs.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
push:
branches: [main]
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: CI

# Cancel superseded PR runs; protect main + scheduled runs.
# `head_ref || ref` keys per-PR-source-branch on PRs, falls back to ref on push.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
push:
branches: [main]
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Compliance Report

# Compliance variant: produces compliance reports / signed artifacts. Group
# for serialization but never cancel — partially-completed compliance runs
# leave registries / attestations in inconsistent state.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

on:
workflow_call:
inputs:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ name: Release NPM
# Platform packages MUST be published before the root package so npm can
# resolve optionalDependencies on the first install after tag.

# Release variant: serialize per-release, never cancel. A cancelled npm
# publish run can leave platform packages published but root package
# missing — first-install resolution would fail until manual cleanup.
concurrency:
group: release-npm-${{ github.event.release.tag_name || github.event.inputs.version || github.ref }}
cancel-in-progress: false

on:
release:
types: [published]
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Release

# Release variant: serialize per-tag, never cancel. A cancelled release
# mid-publish leaves the GitHub Release page, registries, and per-target
# binary archives in inconsistent state.
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false

on:
push:
tags:
Expand Down
Loading