Skip to content

Commit c5dacc8

Browse files
authored
gh-106217: Truncate the issue body size of new-bugs-announce-notifier (#106423)
1 parent 2dfc7fa commit c5dacc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
// We need to truncate the body size, because the max size for
4545
// the whole payload is 16kb. We want to be safe and assume that
4646
// body can take up to ~8kb of space.
47-
body : issue.data.body.substring(8000)
47+
body : issue.data.body.substring(0, 8000)
4848
};
4949
5050
const data = {

0 commit comments

Comments
 (0)