From 4b31cabd6cebf7d3d1ea032fa32f347371e9d59e Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sat, 31 May 2025 14:25:49 +0200 Subject: [PATCH] workflows/eval: add header for packages in summary After the stats were added with a header, the list of packages now appeared directly below it, without any separation. --- ci/eval/compare/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ci/eval/compare/default.nix b/ci/eval/compare/default.nix index f6cf1ebe7856..8b609cc8f2c4 100644 --- a/ci/eval/compare/default.nix +++ b/ci/eval/compare/default.nix @@ -173,7 +173,12 @@ runCommand "compare" } >> $out/step-summary.md fi - jq -r -f ${./generate-step-summary.jq} < ${changed-paths} >> $out/step-summary.md + { + echo + echo "# Packages" + echo + jq -r -f ${./generate-step-summary.jq} < ${changed-paths} + } >> $out/step-summary.md cp "$maintainersPath" "$out/maintainers.json" ''