1
Fork 0

Rollup merge of #137885 - klensy:tidy-triagebot, r=jieyouxu

tidy: add triagebot checks

Validates triagebot.toml to have existing paths:

`[mentions."*"]` sections, i.e.
```toml
[mentions."compiler/rustc_const_eval/src/"]
```
or
```toml
[assign.owners]
"/.github/workflows" = ["infra-ci"]
```
or

```toml
trigger_files = [
 "src/librustdoc/html/static/js/search.js",
 "tests/rustdoc-js",
 "tests/rustdoc-js-std",
 ]
```
Looked at #137876 and implemented check.
This commit is contained in:
Matthias Krüger 2025-03-09 10:34:48 +01:00 committed by GitHub
commit cdd97bae84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 103 additions and 11 deletions

View file

@ -5271,6 +5271,7 @@ dependencies = [
"serde",
"similar",
"termcolor",
"toml 0.7.8",
"walkdir",
]