Skip licenses.json check for dependabot updates

This commit is contained in:
Damien Elmes 2025-08-19 19:49:31 +10:00
parent 78a3b3ef7b
commit 054740dd14

View file

@ -148,7 +148,7 @@ impl LintContext {
if last_author == "49699333+dependabot[bot]@users.noreply.github.com" {
println!("Dependabot whitelisted.");
return Ok(());
std::process::exit(0);
} else if all_contributors.contains(last_author.as_str()) {
return Ok(());
}