Scripts: Add release commit generation script

This commit is contained in:
Stenzek 2025-01-05 15:13:41 +10:00
parent 5ee069fc63
commit 9f41ef9eac
No known key found for this signature in database
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
if [ "$#" -ne 1 ]; then
echo "Syntax: $0 <commit range, start..end>"
exit 1
fi
IFS="
"
printf "## Commits\n"
for i in $(git log --oneline --reverse "$1"); do
printf -- "- %s\n" "$i"
done