From 9390c28cb61fbccc9ebbee5a21d1134a64afaba9 Mon Sep 17 00:00:00 2001 From: Paul Rastoin <45004772+prastoin@users.noreply.github.com> Date: Fri, 24 Jul 2026 15:27:07 +0200 Subject: [PATCH] ci: report ci-shared-status-check on merge_group (#23276) Follow-up to #23275. `ci-shared` was the one required check left off that batch, so `ci-shared-status-check` still sits at "Expected - Waiting for status to be reported" and blocks the merge queue. Same fix as the other workflows: add a `merge_group` trigger and gate `changed-files-check` with `if: github.event_name != 'merge_group'`. On a queued candidate, `changed-files-check` skips, `shared-test` (gated on `any_changed`) cascades to skipped, and the `always()`-gated `ci-shared-status-check` job reports success in seconds. The full suite still runs on `pull_request`. --- _Generated by [Claude Code](https://claude.ai/code/session_015mZozbvyvha1S6wsEVLBnF)_ Review in cubic --- .github/workflows/ci-shared.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-shared.yaml b/.github/workflows/ci-shared.yaml index 4093b4123f..e2af8d9eb8 100644 --- a/.github/workflows/ci-shared.yaml +++ b/.github/workflows/ci-shared.yaml @@ -2,6 +2,7 @@ name: CI Shared on: pull_request: + merge_group: permissions: contents: read @@ -12,6 +13,7 @@ concurrency: jobs: changed-files-check: + if: github.event_name != 'merge_group' uses: ./.github/workflows/changed-files.yaml with: files: |