File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
site/src/request_handlers Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -94,11 +94,18 @@ async fn handle_rollup_merge(
94
94
use std:: fmt:: Write ;
95
95
let ( pr, commit) = n?;
96
96
let mut string = string?;
97
- write ! ( & mut string, "#{pr}: {commit}\n " ) . unwrap ( ) ;
97
+ write ! (
98
+ & mut string,
99
+ "|#{pr}|[{commit}](https://github.com/rust-lang-ci/rust/commit/{commit})|\n "
100
+ )
101
+ . unwrap ( ) ;
98
102
Ok ( string)
99
103
} ) ?;
100
104
let msg =
101
- format ! ( "Try perf builds for each individual rolled up PR have been enqueued:\n {mapping}" ) ;
105
+ format ! ( "📌 Perf builds for each rolled up PR:\n \n \
106
+ |PR# | Perf Build Sha|\n |----|-----|\n \
107
+ {mapping}\n In the case of a perf regression, \
108
+ run the following command for each PR you suspect might be the cause: `@rust-timer build $SHA`") ;
102
109
main_repo_client. post_comment ( rollup_pr_number, msg) . await ;
103
110
Ok ( ( ) )
104
111
}
You can’t perform that action at this time.
0 commit comments