From 4155d4e5c511a6687c77e41b0d6453ea56c697e6 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 9 Mar 2026 14:40:23 -0400 Subject: [PATCH] Add user-facing output for successful git push in `arc run` Co-Authored-By: Claude Opus 4.6 --- lib/crates/arc-workflows/src/cli/run.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/crates/arc-workflows/src/cli/run.rs b/lib/crates/arc-workflows/src/cli/run.rs index e137feb0f..f75105c3d 100644 --- a/lib/crates/arc-workflows/src/cli/run.rs +++ b/lib/crates/arc-workflows/src/cli/run.rs @@ -1030,6 +1030,10 @@ pub async fn run_command( match result { Ok(Ok(Ok(()))) => { tracing::info!(run_branch, "Pushed run branch to origin"); + eprintln!( + "{} {run_branch}", + styles.bold.apply_to("Pushed branch:") + ); } Ok(Ok(Err(e))) => { tracing::warn!(error = %e, "Failed to push run branch");