Prefill reviewer

This commit is contained in:
Aleksey Kladov 2020-07-13 15:26:13 +02:00
parent 5ca7cd960b
commit 6db29e6b8d

View file

@ -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(())
}