We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f36c1a + ab39c5a commit 183cd65Copy full SHA for 183cd65
1 file changed
.github/scripts/generate-changelog.sh
@@ -61,8 +61,7 @@ generate_changelog_content() {
61
fi
62
63
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
-
+ --pretty=format:"%s|%h|%H|%an|%ae" "$LOG_RANGE" | grep -vE "$INTERNAL_PATTERNS" |
66
while IFS='|' read -r msg short_hash full_hash author email; do
67
formatted=$(format_commit_message "$msg")
68
[ -n "$formatted" ] && echo "- [$short_hash](https://github.com/$GITHUB_REPOSITORY/commit/$full_hash) $formatted ($author <$email>)"
0 commit comments