about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 170cfee9fe8..530bd8205a9 100644
--- a/xtask/src/release.rs
+++ b/xtask/src/release.rs
@@ -93,7 +93,10 @@ impl PromoteCmd {
         run!("git commit -m':arrow_up: rust-analyzer'")?;
         if !self.dry_run {
             run!("git push")?;
-            run!("xdg-open https://github.com/matklad/rust/pull/new/{}", branch)?;
+            run!(
+                "xdg-open https://github.com/matklad/rust/pull/new/{}?body=r%3F%20%40ghost",
+                branch
+            )?;
         }
         Ok(())
     }