Unverified Commit 64017f7d authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

ci/eval/compare/maintainers: disable aliases (#454527)

parents 4c574b7e 8edb1fc3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ jobs:
      - id: prepare
        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
        with:
          retries: 3
          script: |
            require('./ci/github-script/prepare.js')({
              github,
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ jobs:
      - id: prepare
        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
        with:
          retries: 3
          script: |
            require('./ci/github-script/prepare.js')({
              github,
+7 −1
Original line number Diff line number Diff line
@@ -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;