Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/wise-rules-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler": minor
---

Unhide wrangler workflows delete command
1 change: 1 addition & 0 deletions packages/wrangler/src/__tests__/workflows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ describe("wrangler workflows", () => {
COMMANDS
wrangler workflows list List Workflows associated to account
wrangler workflows describe <name> Describe Workflow resource
wrangler workflows delete <name> Delete workflow - when deleting a workflow, it will also delete it's own instances
wrangler workflows trigger <name> [params] Trigger a workflow, creating a new instance. Can optionally take a JSON string to pass a parameter into the workflow instance
wrangler workflows instances Manage Workflow instances

Expand Down
1 change: 0 additions & 1 deletion packages/wrangler/src/workflows/commands/delete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const workflowsDeleteCommand = createCommand({
"Delete workflow - when deleting a workflow, it will also delete it's own instances",
owner: "Product: Workflows",
status: "stable",
hidden: true,
},

args: {
Expand Down
Loading