1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-08 02:38:11 +09:00

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.
This commit is contained in:
Wolfgang Walther 2025-05-31 14:25:49 +02:00
parent e8906ae26c
commit 4b31cabd6c
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1

View file

@ -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"
''