ref:9b0ea17aa675dff94cc16ff3f5121b3bc1617f41

fix(cli): validation message bullets, trigger id display

- Change validation message indentation from bare spaces to bullet prefix - Remove redundant short_id truncation (already 10 chars max) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
SHA: 9b0ea17aa675dff94cc16ff3f5121b3bc1617f41
Author: Cole Christensen <cole.christensen@macmillan.com>
Date: 2026-03-21 20:32
Parents: b8c4218
1 files changed +2 -2
Type
src/commands/ci.rs +2 −2
@@ -256,7 +256,7 @@
if let Some(ref messages) = run.validation_messages {
if !messages.is_empty() {
for msg in messages {
output::detail(" ", msg);
output::detail(" -", msg);
}
}
}
@@ -513,7 +513,7 @@
output::success(&format!(
"Triggered CI run {}",
&run_id[..run_id.len().min(10)]
run_id
));
output::detail("Branch", &branch_name);
output::detail("Commit", &commit_sha[..8.min(commit_sha.len())]);