From 5dd090e8dfdf053a6291df229c6df0ee97249d97 Mon Sep 17 00:00:00 2001 From: Syfe Date: Fri, 16 Jan 2026 15:35:57 +0100 Subject: [PATCH] docs: add documentation new retry mode for retry rules We now support the use of the retry mode attribute for retry rules. This introduce the first documentation on how to use it. Related MRGFY-6341 --- src/content/docs/ci-insights/auto-retry.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/content/docs/ci-insights/auto-retry.mdx b/src/content/docs/ci-insights/auto-retry.mdx index f5a21f6f9c..b37b32e9a9 100644 --- a/src/content/docs/ci-insights/auto-retry.mdx +++ b/src/content/docs/ci-insights/auto-retry.mdx @@ -26,8 +26,8 @@ configured retry rules 3. **Wait for Completion**: If any job matches a retry rule, Auto-Retry waits for the entire workflow to complete -4. **Workflow Retry**: Once complete, the entire workflow is retried, - re-running all failed jobs +4. **Workflow Retry**: Once complete, the workflow is retried, + re-running either all failed jobs or the entire workflow 5. **Success Preservation**: Previously successful jobs are not re-executed @@ -75,4 +75,8 @@ Auto-Retry rules define when a workflow should be retried based on job failures. Each rule specifies: - **Conditions**: When the job failure should trigger a workflow retry + - **Number of retries**: Maximum number of retries and timing constraints + +- **Retry mode**: The mode of retry, either retrying all failed jobs (`job`) + or the entire workflow (`pipeline`)