Skip to content

Commit affd858

Browse files
authored
Add S-waiting-on-perf as soon as run is requested
I realized after rust-lang#810 that it makes more sense to add the label as soon as the run is requested, since it's still "waiting on perf" even though the perf run itself hasn't started yet.
1 parent a0ae2ec commit affd858

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/src/github.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ pub async fn handle_github(
7676
post_comment(
7777
&data.config,
7878
request.issue.number,
79-
"Awaiting bors try build completion.",
79+
"Awaiting bors try build completion.
80+
81+
@rustbot label: +S-waiting-on-perf",
8082
)
8183
.await;
8284
return Ok(github::Response);
@@ -525,9 +527,7 @@ async fn enqueue_sha(
525527
};
526528
if queued {
527529
let msg = format!(
528-
"Queued {} with parent {}, future [comparison URL]({}).
529-
530-
@rustbot label: +S-waiting-on-perf",
530+
"Queued {} with parent {}, future [comparison URL]({}).",
531531
commit_response.sha,
532532
commit_response.parents[0].sha,
533533
try_commit.comparison_url(),

0 commit comments

Comments
 (0)