From 838ac8f553c0ccd8f2fd2ea099fe7171c8c29403 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Fri, 22 May 2026 21:10:23 -0700 Subject: [PATCH] fix(ci): stop cancelling Hold Label Check runs (#40380) Co-authored-by: Claude Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/no-hold-label.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/no-hold-label.yml b/.github/workflows/no-hold-label.yml index 32125e22ab9..4141def2fdf 100644 --- a/.github/workflows/no-hold-label.yml +++ b/.github/workflows/no-hold-label.yml @@ -7,10 +7,13 @@ on: permissions: pull-requests: read -# cancel previous workflow jobs for PRs +# Let each label event run to completion. Cancelling in-progress runs leaves +# CANCELLED entries in the PR's check-suite rollup, which poisons GitHub's +# `status:success` search filter even though all real CI passed. The job is +# a tiny no-op github-script call, so the wasted compute is negligible. concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} - cancel-in-progress: true + cancel-in-progress: false jobs: check-hold-label: