From 8213c7eeedf148f379dbd5ea7ebff15c44ec2349 Mon Sep 17 00:00:00 2001 From: cuioss oliver <23139298+cuioss@users.noreply.github.com> Date: Wed, 26 Aug 2026 22:11:06 +0200 Subject: [PATCH] ci: trigger the Maven build on merge_group A merge queue builds a candidate on refs/heads/gh-readonly-queue/... and dispatches merge_group, not pull_request. Without this trigger the required 'build / conclusion' check never reports on a queued entry, the entry is ejected after the 60-minute timeout, and nothing can merge into main. Inert until a queue is enabled on this repo; merge_group events are only dispatched by one. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_014sxAQc2ohWuDz65e2DbVij --- .github/workflows/maven.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3c97e0a..432707f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -2,6 +2,9 @@ name: Maven Build on: + # Required so the 'build / conclusion' status check runs on the merge-queue + # branch; without it, queued PRs stay CLEAN but never merge (queue times out). + merge_group: push: branches: [main, "feature/*", "fix/*", "chore/*", "release/*", "dependabot/**"] pull_request: