1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

workflows: replace API calls from bash with github-script (#412659)

This commit is contained in:
Wolfgang Walther 2025-06-01 10:05:31 +00:00 committed by GitHub
commit b429336d37
Signed by: github
GPG key ID: B5690EEEBB952194
4 changed files with 125 additions and 101 deletions

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