Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix linters
  • Loading branch information
DemianParkhomenko committed Apr 11, 2025
commit 631bc1b5c2bab205e0c996eeb1a5a9554559a61a
3 changes: 2 additions & 1 deletion tools/actions/create-release-proposal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ TITLE="$(git log -1 --format=%s)"
# Use a temporary file for the PR body
TEMP_BODY="$(awk "/## ${RELEASE_DATE}/,/^<a id=/{ if (!/^<a id=/) print }" "doc/changelogs/CHANGELOG_V${RELEASE_LINE}.md")"

if [ "$(printf "%s" "$TEMP_BODY" | wc -c)" -gt 65536 ]; then
TEMP_BODY_LENGTH=$(printf "%s" "$TEMP_BODY" | wc -c)
if [ "$TEMP_BODY_LENGTH" -gt 65536 ]; then
TEMP_BODY="## ${RELEASE_DATE}"
fi

Expand Down
Loading