diff options
| author | soryu <soryu@soryu.co> | 2026-01-29 02:23:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-29 02:23:56 +0000 |
| commit | c3fc0fb4b7a91308f62bd23d6a71d4a5fccfd32e (patch) | |
| tree | 274faa2561f99bda2fd8137e2d3f4ac9ae980a7f /makima/src/daemon/ws/protocol.rs | |
| parent | 7fa15385e4d47d4b304d55a1e31e13ede121d0d6 (diff) | |
| parent | 45a433c0eb63cae1322203ee14292f1c427a09c9 (diff) | |
| download | soryu-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/ws/protocol.rs')
| -rw-r--r-- | makima/src/daemon/ws/protocol.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/makima/src/daemon/ws/protocol.rs b/makima/src/daemon/ws/protocol.rs index bd13975..e971798 100644 --- a/makima/src/daemon/ws/protocol.rs +++ b/makima/src/daemon/ws/protocol.rs @@ -693,9 +693,11 @@ pub enum DaemonCommand { task_id: Uuid, title: String, body: Option<String>, - /// Base branch for the PR (default: main). + /// Base branch for the PR. #[serde(rename = "baseBranch")] base_branch: String, + /// Source branch name to push and create PR from. + branch: String, }, /// Get the diff for a task's changes. |
