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 9ae5b94 commit b06bc89Copy full SHA for b06bc89
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