mirror of
https://github.com/PhilKes/NotallyX.git
synced 2025-06-28 20:29:54 +00:00
17 lines
No EOL
697 B
Bash
Executable file
17 lines
No EOL
697 B
Bash
Executable file
#!/bin/bash
|
|
|
|
VERSION_NAME=$1
|
|
OUTPUT_FILE=$2
|
|
GITHUB_TOKEN=${3:-$CHANGELOG_GITHUB_TOKEN}
|
|
echo "Generating CHANGELOG.md entry since $VERSION_NAME to $OUTPUT_FILE"
|
|
timeout 90s github_changelog_generator -u PhilKes -p NotallyX --since-tag "$VERSION_NAME" \
|
|
--no-pull-requests --include-tags-regex '^v\d+(\.\d+)*$' \
|
|
--include-labels enhancement,bug --exclude-labels duplicate,question,invalid,wontfix,'already done' \
|
|
--enhancement-label "### Added Features" --bugs-label "### Fixed Bugs" \
|
|
--base "$OUTPUT_FILE" --output "$OUTPUT_FILE" --token "$GITHUB_TOKEN"
|
|
|
|
# Check if timeout caused failure
|
|
if [[ $? -eq 124 ]]; then
|
|
echo "Error: github_changelog_generator timed out" >&2
|
|
exit 1
|
|
fi |