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.

(cherry picked from commit 4b31cabd6c)
This commit is contained in:
Wolfgang Walther 2025-05-31 14:25:49 +02:00 committed by github-actions[bot]
parent ce81569f87
commit 1fadfc89b2

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