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.

(cherry picked from commit 4d996cfb2f)
This commit is contained in:
Wolfgang Walther
2025-08-20 12:51:09 +02:00
committed by github-actions[bot]
parent 053b8e38d6
commit 16321a259b

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;
};