You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# GitHub Issues/PRs messages have a max size limit on the message body payload.
50
59
# This is the error: `body is too long (maximum is 65536 characters)`.
51
60
max_pr_desc_char_length=65000
52
-
read -d '' pr_header <<EOF
61
+
read -d '' pr_header <<EOF || true
53
62
This PR is a preview of the changes that will be included in the next release. Please do not merge this PR.
54
63
---
55
64
EOF
56
65
if [[ ${#changelog_content}-gt$max_pr_desc_char_length ]];then
57
-
read -d '' pr_body <<EOF
66
+
read -d '' pr_body <<EOF || true
58
67
${pr_header}
59
68
The changelog content is too long for the PR description. Please view the full changelog in the [CHANGELOG.md](https://github.com/smartcontractkit/chainlink/blob/changesets/release-preview/CHANGELOG.md)
0 commit comments