diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/release.rs | 5 |
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 | } |