From 5b6acd7b3b167f0a1b94d5baafc6fd7abf2d77d7 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 2 Sep 2026 12:49:56 -0500 Subject: [PATCH] docs(ci): date the cancellation observation to 1.26.0, not the current version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The concurrency note said "this Gitea (1.26.0)" while `GET /version` now returns 1.27.2 — the instance was upgraded on 2026-08-25/26 (daniel/gitdan's runbook, gitdan#46). Swapping the number would have asserted the cancellation was observed on 1.27.2, which nobody has checked: the runs it cites were seen before the upgrade. The comment now dates the observation to 1.26.0, names the current version, and says persistence is unverified — which is why every commit gets its own group rather than trusting `cancel-in-progress`. That reasoning is unchanged; only the implied currency was wrong. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01LjbhSqQf3pwnPA6MVaWcWL --- .gitea/workflows/ci.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index cc60b6e..ac594f0 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -21,10 +21,11 @@ on: # somebody's build, so drop it. # # `push` groups on `github.sha` rather than `github.ref`: a constant per-branch -# group is what let this Gitea (1.26.0) cancel two of daniel/gitdan's merge -# runs outright while `cancel-in-progress` was gated away from `push` entirely -# — see the long note in that repo's ci.yaml for the evidence. Giving every -# commit its own group leaves that behaviour nothing to act on. +# group is what let this Gitea cancel two of daniel/gitdan's merge runs +# outright while `cancel-in-progress` was gated away from `push` entirely — +# see the long note in that repo's ci.yaml. Observed on 1.26.0; the instance +# is 1.27.2 now and whether it persists is unverified, which is why every +# commit gets its own group instead of trusting the flag. concurrency: group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.ref || github.sha }} cancel-in-progress: true