We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b17b12 commit 5c5790aCopy full SHA for 5c5790a
1 file changed
.github/workflows/release-publish.yml
@@ -108,9 +108,9 @@ jobs:
108
PRERELEASE_FLAG="--prerelease"
109
fi
110
111
- NOTES="$BODY"
+ NOTES="$(printf '## Changelog\n\n%s' "$BODY")"
112
if [ -n "$CONTRIBUTORS" ]; then
113
- NOTES="$(printf '%s\n\n**Contributors:** %s' "$BODY" "$CONTRIBUTORS")"
+ NOTES="$(printf '%s\n\n## Contributors\n\nThe following contributors merged PRs in this release:\n\n%s' "$NOTES" "$CONTRIBUTORS")"
114
115
116
gh release create "$TAG" \
0 commit comments