Skip to content

Add S-waiting-on-perf once perf run is queued #810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions site/src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub async fn handle_github(
post_comment(
&data.config,
request.issue.number,
"Awaiting bors try build completion",
"Awaiting bors try build completion.",
)
.await;
return Ok(github::Response);
Expand Down Expand Up @@ -525,7 +525,9 @@ async fn enqueue_sha(
};
if queued {
let msg = format!(
"Queued {} with parent {}, future [comparison URL]({}).",
"Queued {} with parent {}, future [comparison URL]({}).

@rustbot label: +S-waiting-on-perf",
commit_response.sha,
commit_response.parents[0].sha,
try_commit.comparison_url(),
Expand Down Expand Up @@ -646,7 +648,7 @@ non-neutral **do not** roll this PR up -- it will mask other \
regressions or improvements in the roll up.

@bors rollup=never
@rustbot modify labels: +S-waiting-on-review -S-waiting-on-perf",
@rustbot label: +S-waiting-on-review -S-waiting-on-perf",
commit.sha, comparison_url
),
)
Expand Down