We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c07f52 commit 7fe89ddCopy full SHA for 7fe89dd
xtask/src/tools/lychee.rs
@@ -37,6 +37,9 @@ impl LycheeRunner {
37
38
let inputs: Vec<Input> = get_md_files()
39
.iter()
40
+ // Skip the changelog to preserve history, but also to avoid checking hundreds of
41
+ // PR links and similar that don't need validation
42
+ .filter(|file| !file.to_string().contains("CHANGELOG"))
43
.map(|file| Input {
44
source: InputSource::FsPath(PathBuf::from(file)),
45
file_type_hint: Some(FileType::Markdown),
0 commit comments