From b4866f01847402e3d04fe9c878f654d47f86f37b Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Fri, 10 Jul 2026 11:49:45 +0100 Subject: [PATCH] docs: improve bulk actions docs (#4211) - Combine SDK and dashboard bulk actions docs - Fix API reference pages for bulk actions - Fix weird rendering on bulk actions page ## Todo - [ ] not sure about having the SDK+dashboard combined and under "Using the dashboard"... need to find the right place --- docs/bulk-actions.mdx | 75 +++- docs/docs.json | 17 +- 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 | 25 +- docs/v3-openapi.yaml | 463 ++++++++++++++++++++ 9 files changed, 566 insertions(+), 34 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 rename docs/{management => }/runs/bulk-actions.mdx (79%) diff --git a/docs/bulk-actions.mdx b/docs/bulk-actions.mdx index 04d0551c9..b40807cfe 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 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 from the dashboard.** + +Use bulk actions when you need to retry failed runs after deploying a fix, or stop a group of queued or executing runs. + + + For backend code, see [Bulk actions with the SDK](/runs/bulk-actions). +