From 1f16fe16c2b0c4fea25de23b1a2dbe1b606f4551 Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Thu, 30 Jul 2026 17:58:08 +0200 Subject: [PATCH] chore: enable merge queue batching (#30410) This waits for up to 2 min to group up to 3 PRs into the same draft. That should cut down on the amount of draft PRs that get created. The main downsides are the 2 minute wait when only queueing one PR, and less failure isolation: on an error, mergify has to do bisect runs to figure out which PR failed the batch, which takes more time than purely sequential operation. All of this can be tuned further of course. --- .mergify.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.mergify.yml b/.mergify.yml index 226e26c4c0..12f3ef6715 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -1,2 +1,7 @@ merge_queue: status_comments: outcomes + +queue_rules: + - name: default + batch_size: 3 + batch_max_wait_time: 2 min