We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb5988 commit f7cb08aCopy full SHA for f7cb08a
.github/workflows/release.yml
@@ -83,9 +83,9 @@ jobs:
83
COMPARE_URL="https://github.com/${GITHUB_REPOSITORY}/compare/${LAST_TAG}...v${CURRENT_VERSION}"
84
fi
85
if [ -n "$RANGE" ]; then
86
- CHANGELOG=$(git log --pretty=format:'- %s (%h)' "$RANGE")
+ CHANGELOG=$(git log --no-merges --pretty=format:'- %s (%h)' "$RANGE")
87
else
88
- CHANGELOG=$(git log --pretty=format:'- %s (%h)')
+ CHANGELOG=$(git log --no-merges --pretty=format:'- %s (%h)')
89
90
if [ -z "$CHANGELOG" ]; then
91
CHANGELOG="- No commits found for this release."
0 commit comments