We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420cfca commit a6e6762Copy full SHA for a6e6762
site/src/github/comparison_summary.rs
@@ -183,7 +183,10 @@ async fn summarize_run(
183
.map(|benchmark| format!("- {benchmark}"))
184
.collect::<Vec<_>>()
185
.join("\n");
186
- format!("\n**Warning ⚠**: The following benchmark(s) failed to build:\n{benchmarks}\n")
+ let alert_row = ":exclamation: ".repeat(5);
187
+ format!(
188
+ "\n{alert_row}\n**Warning :warning:**: The following benchmark(s) failed to build:\n{benchmarks}\n{alert_row}\n"
189
+ )
190
} else {
191
String::new()
192
};
0 commit comments