From abd4478d32d9c6dda828aa0014151c135808777a Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Thu, 9 Jul 2026 17:26:04 +0100 Subject: [PATCH 1/2] docs: improve bulk actions docs --- docs/bulk-actions.mdx | 214 +++++++++- docs/docs.json | 18 +- docs/errors-retrying.mdx | 4 + docs/management/bulk-actions/abort.mdx | 4 + docs/management/bulk-actions/create.mdx | 4 + docs/management/bulk-actions/list.mdx | 4 + docs/management/bulk-actions/retrieve.mdx | 4 + docs/management/runs/bulk-actions.mdx | 173 -------- docs/v3-openapi.yaml | 461 ++++++++++++++++++++++ 9 files changed, 694 insertions(+), 192 deletions(-) create mode 100644 docs/management/bulk-actions/abort.mdx create mode 100644 docs/management/bulk-actions/create.mdx create mode 100644 docs/management/bulk-actions/list.mdx create mode 100644 docs/management/bulk-actions/retrieve.mdx delete mode 100644 docs/management/runs/bulk-actions.mdx diff --git a/docs/bulk-actions.mdx b/docs/bulk-actions.mdx index 04d0551c935..245dd876393 100644 --- a/docs/bulk-actions.mdx +++ b/docs/bulk-actions.mdx @@ -1,9 +1,15 @@ --- title: "Bulk actions" -description: "Perform actions like replay and cancel on multiple runs at once." +description: "Replay or cancel multiple runs from the dashboard or SDK using filters or selected run IDs." --- -Bulk actions allow you to perform replaying and canceling on multiple runs at once. This is especially useful when you need to retry a batch of failed runs with a new version of your code, or when you need to cancel multiple in-progress runs. +**Bulk actions let you replay or cancel multiple runs asynchronously using the dashboard or SDK.** + +Use bulk actions when you need to retry failed runs after deploying a fix, or stop a group of queued or executing runs. + + + The dashboard workflow is shown first. For backend code, see [Create a bulk replay from the SDK](#create-a-bulk-replay-from-the-sdk). +