From 3baf6460897c5dc4812af7f9cf32f6d34bcd4fd8 Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Wed, 12 Nov 2025 11:32:39 -0500 Subject: [PATCH] fix: allow --yes in fork command (#7122) --- cli/src/commands/workspace/workspace.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/commands/workspace/workspace.ts b/cli/src/commands/workspace/workspace.ts index e67617a562..cf74a1f4da 100644 --- a/cli/src/commands/workspace/workspace.ts +++ b/cli/src/commands/workspace/workspace.ts @@ -477,6 +477,7 @@ const command = new Command() .command("delete-fork") .description("Delete a forked workspace and git branch") .arguments("") + .option("-y --yes", "Skip confirmation prompt") .action(deleteWorkspaceFork as any); export default command;