Skip to content

Commit 5950e7d

Browse files
sobolevnhugovk
andauthored
gh-106217: Truncate the issue body size of new-bugs-announce-notifier (#106329)
Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent d5bd32f commit 5950e7d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/new-bugs-announce-notifier.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ jobs:
4141
url : issue.data.html_url,
4242
labels : issue.data.labels.map(label => { return label.name }).join(", "),
4343
assignee : issue.data.assignees.map(assignee => { return assignee.login }),
44-
body : issue.data.body
44+
// We need to truncate the body size, because the max size for
45+
// the whole payload is 16kb. We want to be safe and assume that
46+
// body can take up to ~8kb of space.
47+
body : issue.data.body.substring(8000)
4548
};
4649
4750
const data = {

0 commit comments

Comments
 (0)