aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-13 14:26:13 +0100
committerAleksey Kladov <[email protected]>2020-07-13 14:35:52 +0100
commit6db29e6b8d25bfc6d308350f219cd77728212ef6 (patch)
tree8c743b719e00122c0f2a755f5f2157d891dce3fc
parent5ca7cd960b908944a2f3f66a1d0ee5df98b78959 (diff)
Prefill reviewer
-rw-r--r--xtask/src/release.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/xtask/src/release.rs b/xtask/src/release.rs
index 170cfee9f..530bd8205 100644
--- a/xtask/src/release.rs
+++ b/xtask/src/release.rs
@@ -93,7 +93,10 @@ impl PromoteCmd {
93 run!("git commit -m':arrow_up: rust-analyzer'")?; 93 run!("git commit -m':arrow_up: rust-analyzer'")?;
94 if !self.dry_run { 94 if !self.dry_run {
95 run!("git push")?; 95 run!("git push")?;
96 run!("xdg-open https://github.com/matklad/rust/pull/new/{}", branch)?; 96 run!(
97 "xdg-open https://github.com/matklad/rust/pull/new/{}?body=r%3F%20%40ghost",
98 branch
99 )?;
97 } 100 }
98 Ok(()) 101 Ok(())
99 } 102 }