summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-07-04 18:20:00 (GMT)
committerGitHub <noreply@github.com>2023-07-04 18:20:00 (GMT)
commitc5dacc8fa0c3013be8b457afac996bdae1dc12d2 (patch)
tree32c7445838239409eebf9f8ea21f00710af17125 /.github/workflows
parent2dfc7fae787e65726f24bfe9efe05418b05ee8e2 (diff)
downloadcpython-c5dacc8fa0c3013be8b457afac996bdae1dc12d2.zip
cpython-c5dacc8fa0c3013be8b457afac996bdae1dc12d2.tar.gz
cpython-c5dacc8fa0c3013be8b457afac996bdae1dc12d2.tar.bz2
gh-106217: Truncate the issue body size of `new-bugs-announce-notifier` (#106423)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/new-bugs-announce-notifier.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/new-bugs-announce-notifier.yml b/.github/workflows/new-bugs-announce-notifier.yml
index e3572db..80514b4 100644
--- a/.github/workflows/new-bugs-announce-notifier.yml
+++ b/.github/workflows/new-bugs-announce-notifier.yml
@@ -44,7 +44,7 @@ jobs:
// We need to truncate the body size, because the max size for
// the whole payload is 16kb. We want to be safe and assume that
// body can take up to ~8kb of space.
- body : issue.data.body.substring(8000)
+ body : issue.data.body.substring(0, 8000)
};
const data = {