mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #1790 from YunoHost/OniriCorpe-patch-1
tools: make_changelog.sh enhancements
This commit is contained in:
commit
4eac31e888
1 changed files with 3 additions and 2 deletions
|
@ -2,8 +2,8 @@ VERSION="?"
|
|||
RELEASE="testing"
|
||||
REPO=$(basename $(git rev-parse --show-toplevel))
|
||||
REPO_URL=$(git remote get-url origin)
|
||||
ME=$(git config --global --get user.name)
|
||||
EMAIL=$(git config --global --get user.email)
|
||||
ME=$(git config --get user.name)
|
||||
EMAIL=$(git config --get user.email)
|
||||
|
||||
LAST_RELEASE=$(git tag --list 'debian/11.*' --sort="v:refname" | tail -n 1)
|
||||
|
||||
|
@ -12,6 +12,7 @@ echo ""
|
|||
|
||||
git log $LAST_RELEASE.. -n 10000 --first-parent --pretty=tformat:' - %b%s (%h)' \
|
||||
| sed -E "s&Merge .*#([0-9]+).*\$& \([#\1]\(http://github.com/YunoHost/$REPO/pull/\1\)\)&g" \
|
||||
| sed -E "/Co-authored-by: .* <.*>/d" \
|
||||
| grep -v "Translations update from Weblate" \
|
||||
| tac
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue