From 87af2070102995edf9c6547d1926c69a90fc26c4 Mon Sep 17 00:00:00 2001 From: William Barnhart Date: Tue, 21 Jul 2026 00:15:17 +0000 Subject: [PATCH] ci: trigger on merge_group (bootstrap the merge queue) The merge queue is enabled on `master`, but the workflow did not trigger on `merge_group`, so the required `check` job never ran for queued candidates and merges would stall. Add the trigger directly on top of `master` so the queue becomes functional. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01HHPL4VFWQRQPpjR1gXSKyL --- .github/workflows/python-package.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 41790485d..a78225fd3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -5,6 +5,10 @@ on: branches: [master] pull_request: branches: [master] + # Run the checks on merge-queue candidates too, so the merge queue enabled + # on `master` can validate each candidate as a `merge_group` event -- the + # required `check` job must run there or queued PRs stall. + merge_group: release: types: [created] branches: [master]