From 0a2b61df77d937461ecf7e2f0190348a6525dbb7 Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Sat, 25 Oct 2025 12:18:53 -0400 Subject: [PATCH 1/2] chore(triagebot): enable range-diff Enable comments linking to triagebot range-diff when a PR is rebased onto a different base commit Documentation at: https://forge.rust-lang.org/triagebot/range-diff.html --- triagebot.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/triagebot.toml b/triagebot.toml index 5d79e0bd3bb..6a9ec73d62b 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -37,6 +37,11 @@ label = "O-windows" # Documentation at: https://forge.rust-lang.org/triagebot/note.html [note] +# Enable comments linking to triagebot range-diff when a PR is rebased +# onto a different base commit +# Documentation at: https://forge.rust-lang.org/triagebot/range-diff.html +[range-diff] + [merge-conflicts] remove = [] add = ["S-waiting-on-author"] @@ -52,7 +57,6 @@ warn_non_default_branch = true [assign.owners] "*" = ["@ehuss", "@epage", "@weihanglo"] - [review-submitted] reviewed_label = "S-waiting-on-author" review_labels = ["S-waiting-on-review"] From f9d889bba2c72c792b1c47aa84ad79438ac0bb52 Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Sat, 25 Oct 2025 12:21:05 -0400 Subject: [PATCH 2/2] chore(triagebot): enable review-changes-since Adds at the end of a review body a link to view the changes that happened since the review Documentation at: https://forge.rust-lang.org/triagebot/review-changes-since.html --- triagebot.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/triagebot.toml b/triagebot.toml index 6a9ec73d62b..6c875c2d818 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -42,6 +42,11 @@ label = "O-windows" # Documentation at: https://forge.rust-lang.org/triagebot/range-diff.html [range-diff] +# Adds at the end of a review body a link to view the changes that happened +# since the review +# Documentation at: https://forge.rust-lang.org/triagebot/review-changes-since.html +[review-changes-since] + [merge-conflicts] remove = [] add = ["S-waiting-on-author"]