mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
52 lines
2.0 KiB
Bash
Executable File
52 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Helper script to prepare changelog for a release.
|
|
#
|
|
# It filters GitHub issues and pull requests for the specified milestone and
|
|
# prints a list on standard output. The generated list needs to be reviewed by
|
|
# a maintainer before including it to the CHANGELOG.
|
|
#
|
|
# It uses GitHub CLI from https://github.com/cli/cli
|
|
#
|
|
# Usage: gh-cli-release-notes.sh <GitHub milestone name>
|
|
#
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo 'Usage: gh-cli-release-notes.sh <GitHub milestone name>'
|
|
exit 1
|
|
fi
|
|
|
|
|
|
MILESTONE=$1
|
|
|
|
echo
|
|
echo "${MILESTONE} ($(date "+%Y-%m-%d"))"
|
|
echo ===========================
|
|
echo
|
|
echo "Summary of Changes:"
|
|
echo
|
|
echo "Breaking changes:"
|
|
echo
|
|
|
|
gh issue list -S 'milestone:"'"${MILESTONE}"'" label:breaking' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"'
|
|
gh pr list -S 'milestone:"'"${MILESTONE}"'" label:breaking' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"'
|
|
|
|
echo
|
|
echo "Features and enhancements:"
|
|
echo
|
|
|
|
gh issue list -S 'milestone:"'"${MILESTONE}"'" -label:breaking label:enhancement' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"'
|
|
gh issue list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement label:feature' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"'
|
|
gh pr list -S 'milestone:"'"${MILESTONE}"'" -label:breaking label:enhancement' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"'
|
|
gh pr list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement label:feature' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"'
|
|
|
|
echo
|
|
echo "Bug fixes and improvements:"
|
|
echo
|
|
|
|
gh issue list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement -label:feature' -s all -L 500 --json number,title --jq '.[] | "- GH #\(.number) \(.title)"'
|
|
gh pr list -S 'milestone:"'"${MILESTONE}"'" -label:breaking -label:enhancement -label:feature' -s all -L 500 --json number,title --jq '.[] | "- PR #\(.number) \(.title)"'
|
|
|
|
echo
|