File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
src/content/docs/merge-queue Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,29 @@ Parallel Checks adapt automatically as your code and rules evolve:
131131 ` reset_on_external_merge` — see [Lifecycle: Base Branch
132132 Updates](/merge-queue/lifecycle#base-branch-updates).
133133
134+ # ## Skip Intermediate Results
135+
136+ By default, each speculative draft that includes a pull request must pass
137+ before that pull request can be merged. When
138+ ` merge_queue.skip_intermediate_results` is enabled, Mergify can merge a pull
139+ request as soon as a later downstream draft that also includes that PR passes,
140+ even if earlier intermediate drafts failed.
141+
142+ When to use it :
143+
144+ - Your CI is stable (low flakiness) and long-running, and you want to reduce
145+ latency by trusting the first comprehensive passing draft.
146+
147+ - You're using parallel checks and/or batches and care more about the final
148+ combined outcome than each incremental step.
149+
150+ Enable it in your configuration :
151+
152+ ` ` ` yaml
153+ merge_queue:
154+ skip_intermediate_results: true
155+ ` ` `
156+
134157# # Important Considerations
135158
136159# ## In‑place checks (no drafts)
You can’t perform that action at this time.
0 commit comments