about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-09-11 15:47:50 +0000
committerbors <bors@rust-lang.org>2023-09-11 15:47:50 +0000
commit864c3f3cc544b813c8b5dabe1ab295f58aa43e2a (patch)
tree99c8c8f4e291a72118a5c241a6e3407f78e88f92
parentf62be6d79801dffdc6ece767de20b768738e335a (diff)
parent04e3b2e5f6f108971a90bd1fe55efe580cc8306a (diff)
Auto merge of #3057 - pitaj:master, r=RalfJung
add subtree-sync label to rustc update PRs

For rust-lang/rust#114157
-rw-r--r--src/tools/miri/miri-script/src/commands.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tools/miri/miri-script/src/commands.rs b/src/tools/miri/miri-script/src/commands.rs
index e7a5b559195..124acc95098 100644
--- a/src/tools/miri/miri-script/src/commands.rs
+++ b/src/tools/miri/miri-script/src/commands.rs
@@ -338,7 +338,11 @@ impl Command {
         println!(
             "Confirmed that the push round-trips back to Miri properly. Please create a rustc PR:"
         );
-        println!("    https://github.com/{github_user}/rust/pull/new/{branch}");
+        println!(
+            // Open PR with `subtree-sync` label to satisfy the `no-merges` triagebot check
+            // See https://github.com/rust-lang/rust/pull/114157
+            "    https://github.com/rust-lang/rust/compare/{github_user}:{branch}?quick_pull=1&labels=subtree-sync"
+        );
 
         drop(josh);
         Ok(())