Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/guides/modules/orchestrate/pages/automatic-reruns.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,15 @@ When both automatic step reruns and automatic workflow reruns are configured tog
=== Automatic rerun criteria

CircleCI monitors *workflow* completion status and automatically triggers a "rerun from failed" operation when the following criteria are met. This ensures that only failed jobs and their dependencies are rerun, while successful jobs from the original workflow are not repeated.

* The workflow status is "failed".
* The `max_auto_reruns` value is specified in the configuration.
* The number of remaining rerun attempts is greater than zero, and less than or equal to the specified `max_auto_reruns` value.
* The workflow is not a manual rerun.
* The pipeline is not older than 90 days.

CircleCI monitors *step* completion status and automatically reruns a failed step when the following criteria are met:

* The step status is "failed".
* The `max_auto_reruns` value is specified for the step in the configuration.
* The number of remaining rerun attempts is greater than zero, and less than or equal to the specified `max_auto_reruns` value.
Expand Down