From c0b6cc938773fd1beb71a57a2cfd38682f390526 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 2 Nov 2025 17:30:46 +0100 Subject: [PATCH] ci/eval/compare: fix without owners Even without relevant owners, the owners.txt file must be created, otherwise the next job will fail. --- ci/eval/compare/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/eval/compare/default.nix b/ci/eval/compare/default.nix index 571e6ba41068..9791d26e9550 100644 --- a/ci/eval/compare/default.nix +++ b/ci/eval/compare/default.nix @@ -230,6 +230,7 @@ runCommand "compare" echo "This PR touches ''${#touchedFiles[@]} files" # TODO: Move ci/OWNERS to Nix and produce owners.json instead of owners.txt. + touch "$out/owners.txt" for file in "''${touchedFiles[@]}"; do result=$(codeowners --file "${ownersFile}" "$file")