diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-09 01:56:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-09 01:56:34 +0100 |
| commit | 6f89a6158c1b4758a20b42db0820cd3451610e55 (patch) | |
| tree | a8deb373e1b58de734e9ceb4b74ce9578be9b650 | |
| parent | 273a359b905edea348bbb9495031657e95611ba5 (diff) | |
| parent | ef00d4f62b62343ca95d25cce42f3de3758bc50c (diff) | |
| download | rust-6f89a6158c1b4758a20b42db0820cd3451610e55.tar.gz rust-6f89a6158c1b4758a20b42db0820cd3451610e55.zip | |
Rollup merge of #134045 - ehuss:triagebot-path-fixes, r=compiler-errors
Fix some triagebot mentions paths This fixes some mentions paths in `triagebot.toml` that are no longer valid. * rustdoc themes were merged into rustdoc.css (which already has a mention, and unfortunately can't independently mention the ayu theme). https://github.com/rust-lang/rust/pull/115829 cc `@GuillaumeGomez` `@Cldfire` * The entry for `inspect_obligations.rs` was never correct, from https://github.com/rust-lang/rust/pull/122385. cc `@lcnr` `@compiler-errors` * The entry for `need_type_info.rs` was moved in https://github.com/rust-lang/rust/pull/127501
| -rw-r--r-- | triagebot.toml | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/triagebot.toml b/triagebot.toml index 4d6806711fb..c5dbd538f6c 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -644,7 +644,7 @@ cc = ["@rust-lang/wg-const-eval"] message = "Some changes occurred to the CTFE / Miri interpreter" cc = ["@rust-lang/miri"] -[mentions."compiler/rustc_infer/src/infer/error_reporting/need_type_info.rs"] +[mentions."compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs"] message = "Some changes occurred in need_type_info.rs" cc = ["@lcnr"] @@ -656,7 +656,7 @@ cc = ["@compiler-errors", "@lcnr"] message = "changes to the core type system" cc = ["@compiler-errors", "@lcnr"] -[mentions."compiler/rustc_hir_analysis/src/fn_ctxt/inspect_obligations.rs"] +[mentions."compiler/rustc_hir_typeck/src/fn_ctxt/inspect_obligations.rs"] message = "changes to `inspect_obligations.rs`" cc = ["@compiler-errors", "@lcnr"] @@ -761,10 +761,6 @@ cc = [ "@jsha", ] -[mentions."src/librustdoc/html/static/css/themes"] -message = "Some changes occurred in HTML/CSS themes." -cc = ["@GuillaumeGomez"] - [mentions."tests/rustdoc-gui/"] message = "Some changes occurred in GUI tests." cc = ["@GuillaumeGomez"] @@ -779,10 +775,6 @@ directly, or you can comment on the tracking issue and link this PR. """ cc = ["@jieyouxu"] -[mentions."src/librustdoc/html/static/css/themes/ayu.css"] -message = "A change occurred in the Ayu theme." -cc = ["@Cldfire"] - [mentions."src/rustdoc-json-types"] message = """ rustdoc-json-types is a **public** (although nightly-only) API. \ |
