ci/nixpkgs-vet: ignore .github/ and ci/ folders

nixpkgs-vet doesn't care about our CI infrastructure, so ignoring these
files will lead to more cache hits when iterating on CI related PRs.
This commit is contained in:
Wolfgang Walther
2025-08-20 12:51:09 +02:00
parent c4fa63da49
commit 4d996cfb2f

View File

@@ -13,7 +13,10 @@ let
with lib.fileset;
path:
toSource {
fileset = (gitTracked path);
fileset = difference (gitTracked path) (unions [
(path + /.github)
(path + /ci)
]);
root = path;
};