ci/eval/compare/maintainers: disable aliases

We should never try to ping maintainers through package aliases, this
can only lead to errors. One example case is, where an attribute is a
throw alias, but then re-introduced in a PR. This would trigger the
throw. By disabling aliases, we can fallback gracefully.
This commit is contained in:
Wolfgang Walther
2025-10-22 13:33:41 +02:00
parent 9c96382511
commit 6a26c66335
+7 -1
View File
@@ -7,7 +7,13 @@
removedattrs,
}:
let
pkgs = import ../../.. { system = "x86_64-linux"; };
pkgs = import ../../.. {
system = "x86_64-linux";
# We should never try to ping maintainers through package aliases, this can only lead to errors.
# One example case is, where an attribute is a throw alias, but then re-introduced in a PR.
# This would trigger the throw. By disabling aliases, we can fallback gracefully below.
config.allowAliases = false;
};
changedpaths = lib.importJSON changedpathsjson;