diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-12 19:00:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 19:00:42 +0100 |
| commit | a998c915ea5cabfcb11d58b4d923a5f2e039e677 (patch) | |
| tree | a89bf6032a7ffaf45ecb451a6825b3e0bf10cfe9 | |
| parent | 6475fde16b3071dac1c60a18328dd75284c579f2 (diff) | |
| parent | 87fc2e3a7ea7b1cc0b11ad4259acbd976b982356 (diff) | |
| download | rust-a998c915ea5cabfcb11d58b4d923a5f2e039e677.tar.gz rust-a998c915ea5cabfcb11d58b4d923a5f2e039e677.zip | |
Rollup merge of #134089 - Urgau:triagebot-exceptions, r=ehuss
Use newly added exceptions to non default branch warning cc https://github.com/rust-lang/triagebot/pull/1860 cc `@cuviper` r? `@ehuss`
| -rw-r--r-- | triagebot.toml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/triagebot.toml b/triagebot.toml index 18bbbad234e..214fc2a21c4 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -991,13 +991,21 @@ https://github.com/rust-lang/reference/blob/HEAD/src/identifiers.md. cc = ["@ehuss"] [assign] -warn_non_default_branch = true +warn_non_default_branch.enable = true contributing_url = "https://rustc-dev-guide.rust-lang.org/getting-started.html" users_on_vacation = [ "jyn514", "celinval", ] +[[assign.warn_non_default_branch.exceptions]] +title = "[beta" +branch = "beta" + +[[assign.warn_non_default_branch.exceptions]] +title = "[stable" +branch = "stable" + [assign.adhoc_groups] compiler = [ "@BoxyUwU", |
