We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f6df8 commit a46d969Copy full SHA for a46d969
site/src/github.rs
@@ -606,9 +606,7 @@ async fn summarize_run(
606
let benchmark_map = ctxt.get_benchmark_category_map().await;
607
608
let mut message = format!(
609
- "Finished benchmarking commit ({sha}): [comparison url]({comparison_url}).
610
-
611
-**Summary**:\n\n",
+ "Finished benchmarking commit ({sha}): [comparison url]({comparison_url}).\n\n",
612
sha = commit.sha,
613
comparison_url = make_comparison_url(&commit, Stat::Instructions)
614
);
@@ -654,7 +652,7 @@ async fn summarize_run(
654
652
655
653
for (title, stat, hidden, comparison) in stats {
656
message.push_str(&format!(
657
- "## [{title}]({})\n",
+ "\n### [{title}]({})\n",
658
make_comparison_url(&commit, stat)
659
));
660
0 commit comments