We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
triagebot.toml
1 parent 1bb3352 commit 4b50703Copy full SHA for 4b50703
src/tools/tidy/src/triagebot.rs
@@ -6,8 +6,11 @@ use toml::Value;
6
7
pub fn check(path: &Path, bad: &mut bool) {
8
let triagebot_path = path.join("triagebot.toml");
9
+
10
+ // This check is mostly to catch broken path filters *within* `triagebot.toml`, and not enforce
11
+ // the existence of `triagebot.toml` itself (which is more obvious), as distribution tarballs
12
+ // will not include non-essential bits like `triagebot.toml`.
13
if !triagebot_path.exists() {
- tidy_error!(bad, "triagebot.toml file not found");
14
return;
15
}
16
0 commit comments