Add user-facing output for successful git push in arc run

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-09 14:40:23 -04:00
parent 34000505a9
commit 4155d4e5c5

View file

@ -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");