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.
2 parents 4fd6d31 + b06bc89 commit 45ee9e4Copy full SHA for 45ee9e4
site/src/github.rs
@@ -92,7 +92,9 @@ async fn enqueue_unrolled_try_builds<'a>(
92
&format!("Unrolled build for #{}", original_pr_number),
93
)
94
.await
95
- .map_err(|e| format!("Error merging commit into perf-tmp: {e:?}"))?;
+ .map_err(|e| {
96
+ format!("Error merging #{original_pr_number}'s commit '{rolled_up_head}' into perf-tmp: {e:?}")
97
+ })?;
98
99
// Force the `try-perf` branch to point to what the perf-tmp branch points to
100
client
0 commit comments