GitHub Reporter
Fetch pull requests, then write a summary into the working tree.
curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
https://api.github.com/repos/$OWNER/$REPO/pulls > build/pulls.json
jq -r '.[].title' build/pulls.json > build/titles.txt
git add build/titles.txt
See the GitHub REST reference for field names.