← back to Cli Printing Press
fix(ci): drop cancel-in-progress from pr-title workflow (#1068)
424199a7a4bd9b90c1787a0a30d1c00228728630 · 2026-05-11 08:06:06 -0700 · Trevin Chow
The pr-title workflow used cancel-in-progress: true on a
${{ github.workflow }}-${{ github.ref }} group. On Mergify
merge-queue draft PRs, the draft's rapid open/sync sequence
cancels attempt 1 before the "Skip Mergify merge queue batches"
step finishes. Mergify treats the cancelled check as a failed
check and dequeues the original PR even though attempt 2 later
succeeds. The title regex runs in ~2 seconds, so cancelling
in-progress runs saves nothing and creates this flake on every
queue batch.
Files touched
M .github/workflows/pr-title.yml
Diff
commit 424199a7a4bd9b90c1787a0a30d1c00228728630
Author: Trevin Chow <trevin@trevinchow.com>
Date: Mon May 11 08:06:06 2026 -0700
fix(ci): drop cancel-in-progress from pr-title workflow (#1068)
The pr-title workflow used cancel-in-progress: true on a
${{ github.workflow }}-${{ github.ref }} group. On Mergify
merge-queue draft PRs, the draft's rapid open/sync sequence
cancels attempt 1 before the "Skip Mergify merge queue batches"
step finishes. Mergify treats the cancelled check as a failed
check and dequeues the original PR even though attempt 2 later
succeeds. The title regex runs in ~2 seconds, so cancelling
in-progress runs saves nothing and creates this flake on every
queue batch.
---
.github/workflows/pr-title.yml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml
index 7f2b30a3..cc7ddd37 100644
--- a/.github/workflows/pr-title.yml
+++ b/.github/workflows/pr-title.yml
@@ -4,10 +4,6 @@ on:
pull_request:
types: [opened, edited, synchronize, reopened]
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
-
permissions:
pull-requests: read
← 910c228d fix(cli): emit --body-json fallback for oneOf/anyOf request
·
back to Cli Printing Press
·
feat(cli): promote html_scrape reachability mode when captch d7e2d74f →