summaryrefslogtreecommitdiff
path: root/makima/src/daemon/cli/supervisor.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-29 02:23:56 +0000
committerGitHub <noreply@github.com>2026-01-29 02:23:56 +0000
commitc3fc0fb4b7a91308f62bd23d6a71d4a5fccfd32e (patch)
tree274faa2561f99bda2fd8137e2d3f4ac9ae980a7f /makima/src/daemon/cli/supervisor.rs
parent7fa15385e4d47d4b304d55a1e31e13ede121d0d6 (diff)
parent45a433c0eb63cae1322203ee14292f1c427a09c9 (diff)
downloadsoryu-makima/fix-hf-cli-command.tar.gz
soryu-makima/fix-hf-cli-command.zip
Merge branch 'master' into makima/fix-hf-cli-commandmakima/fix-hf-cli-command
Diffstat (limited to 'makima/src/daemon/cli/supervisor.rs')
-rw-r--r--makima/src/daemon/cli/supervisor.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/makima/src/daemon/cli/supervisor.rs b/makima/src/daemon/cli/supervisor.rs
index 09f61db..9ad7aef 100644
--- a/makima/src/daemon/cli/supervisor.rs
+++ b/makima/src/daemon/cli/supervisor.rs
@@ -128,9 +128,9 @@ pub struct PrArgs {
#[command(flatten)]
pub common: SupervisorArgs,
- /// Task ID to create PR for
+ /// Branch name to create PR from (e.g., "makima/feature-name")
#[arg(index = 1)]
- pub task_id: Uuid,
+ pub branch: String,
/// PR title
#[arg(long)]
@@ -139,10 +139,6 @@ pub struct PrArgs {
/// PR body/description
#[arg(long)]
pub body: Option<String>,
-
- /// Base branch (default: main)
- #[arg(long, default_value = "main")]
- pub base: String,
}
/// Arguments for diff command.