Retry modes
Infrastructure commands (
git clone, dbt deps) always run automatically on every Bolt run, so they are not retried.Which runs can be retried
Retry is available on runs that come from a schedule, a manual trigger, or the API. It is not available on runs that are tied to a git event:
CI and merge runs are pinned to a specific commit and git event, so there is nothing to re-fire on demand. If you need to re-execute the work, trigger the underlying git event again or run the schedule manually.
Retry from the UI
- Open the failed run from a schedule’s run history.
- On the Run Details page, click Retry.
- Choose a mode: Retry from failure (default) or Retry all commands.
- Confirm. A new run is queued immediately.
What happens to the original run
- The original run’s status, logs, artifacts, and timeline are unchanged.
- The retry is a separate entry with its own run ID, start time, and logs.
- Each retry creates its own new run. Retries do not chain; they all reference the original failed run.
- Notifications (Slack, email, Microsoft Teams) fire on the new run like any other Bolt run.