diff options
| author | soryu <soryu@soryu.co> | 2026-01-29 01:14:17 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-29 01:14:17 +0000 |
| commit | f6a40e2304585f140ed5766b25fe71a6958f4425 (patch) | |
| tree | ef468206f1c0ec1718e74a51115eb1005698c3e3 /makima/src/daemon/ws | |
| parent | d7b0b576fb43902535f0ae8d4f257b50387ec01a (diff) | |
| download | soryu-f6a40e2304585f140ed5766b25fe71a6958f4425.tar.gz soryu-f6a40e2304585f140ed5766b25fe71a6958f4425.zip | |
Fix makima supervisor pr CLI command
Diffstat (limited to 'makima/src/daemon/ws')
| -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. |
