This repository was archived by the owner on Jun 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 443
Open
Conversation
This was referenced Jun 5, 2026
KirtiRamchandani
commented
Jun 5, 2026
Author
Mergify has validated the replacement config on this PR:
Configuration changed: success- output title:
The new Mergify configuration is valid - output summary:
This new configuration will be used for the next pull requests once it is merged.
The remaining failed Summary / Mergify Merge Queue checks are still reporting the current default-branch configuration error, which is the issue this PR removes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Mergify currently marks pull requests with failed
Summary/Mergify Merge Queuechecks because the queue action contains fields that are no longer accepted:actions.queue.methodactions.queue.commit_message_templateThis moves the squash strategy and equivalent commit-message behavior onto the shared
queue_rulesentry instead:merge_method: squashcommit_message_format:withtitle: pr-titleandbody: pr-bodyThat preserves the existing
{{ title }} (#{{ number }})\n\n{{ body }}behavior using Mergify's current declarative format.Validation
ruby -e "require 'yaml'; data=YAML.load_file('.mergify.yml'); puts data['queue_rules'][0]['merge_method']; p data['queue_rules'][0]['commit_message_format']"git diff --check