Update update-set-implementation-lists.yml

This commit is contained in:
ExpensiveKoala 2024-09-29 02:37:14 -07:00 committed by GitHub
parent 26149cebe2
commit 5a98225393
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -147,7 +147,11 @@ jobs:
if (body.length > 65536) {
console.log(`Issue body for ${set[0]} (${set[1]}) too long! Length: ${body.length}`);
console.log(splitStringByMaxLength(body, 65536, "//n"));
const splitBody = splitStringByMaxLength(body, 65536, "//n");
console.log(`Body was split into ${splitBody.length} chunks`);
splitBody.forEach(b => {
console.log(b.length);
});
//continue;
}