From 15b6e5fba161a194fe5427d7d29b0c4286423260 Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 10 Feb 2026 14:50:07 +0000 Subject: Add auto-PR creation for remote repos in directives --- makima/src/daemon/cli/directive.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'makima/src/daemon/cli/directive.rs') diff --git a/makima/src/daemon/cli/directive.rs b/makima/src/daemon/cli/directive.rs index cd94a56..2e6ac1d 100644 --- a/makima/src/daemon/cli/directive.rs +++ b/makima/src/daemon/cli/directive.rs @@ -110,3 +110,18 @@ pub struct BatchAddStepsArgs { #[arg(long)] pub json: String, } + +/// Arguments for update command. +#[derive(Args, Debug)] +pub struct UpdateArgs { + #[command(flatten)] + pub common: DirectiveArgs, + + /// PR URL to store on the directive + #[arg(long)] + pub pr_url: Option, + + /// PR branch name to store on the directive + #[arg(long)] + pub pr_branch: Option, +} -- cgit v1.2.3