Skip to content

Commit 183cd65

Browse files
authored
Merge pull request #19 from BerryBytes/feat/tags [release]
feat: changed the changelog script
2 parents 5f36c1a + ab39c5a commit 183cd65

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/scripts/generate-changelog.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ generate_changelog_content() {
6161
fi
6262

6363
git log --no-merges --invert-grep --grep="$EXCLUDE_PATTERNS" \
64-
--pretty=format:"%s|%h|%H|%an|%ae" "$LOG_RANGE" 2>/dev/null | grep -vE "$INTERNAL_PATTERNS" || true |
65-
64+
--pretty=format:"%s|%h|%H|%an|%ae" "$LOG_RANGE" | grep -vE "$INTERNAL_PATTERNS" |
6665
while IFS='|' read -r msg short_hash full_hash author email; do
6766
formatted=$(format_commit_message "$msg")
6867
[ -n "$formatted" ] && echo "- [$short_hash](https://github.com/$GITHUB_REPOSITORY/commit/$full_hash) $formatted ($author <$email>)"

0 commit comments

Comments
 (0)