Make automated changelog shorter: F-Droid has a character limit here

Change-Id: I096745f1d80d4aed764f8402842c1c5874a47464
This commit is contained in:
SpiritCroc 2020-12-22 14:30:45 +01:00
parent 12eb1ea68d
commit 89c8c86ec0
1 changed files with 1 additions and 2 deletions

View File

@ -103,7 +103,6 @@ set_prop "versionName" "\"$version\""
changelog_dir=fastlane/metadata/android/en-US/changelogs
changelog_file="$changelog_dir/$versionCode.txt"
mkdir -p "$changelog_dir"
echo "Automatic changelog from commit history:" > "$changelog_file"
git log --reverse --pretty=format:"- %s" "$last_tag".. --committer="$(git config user.name)" \
| grep -v 'Automatic revert to unchanged upstream strings' \
| grep -v 'Automatic upstream merge preparation' \
@ -112,7 +111,7 @@ git log --reverse --pretty=format:"- %s" "$last_tag".. --committer="$(git config
| grep -v "Automatic upstream merge postprocessing" \
| grep -v "Automatic SchildiChat string correction" \
| grep -v 'merge_helpers\|README\|increment_version' \
>> "$changelog_file"
> "$changelog_file"
if [ "$release_type" != "test" ]; then
$EDITOR "$changelog_file" || true
read -p "Press enter when changelog is done"