Skip to content

Commit

Permalink
Update update-set-implementation-lists.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpensiveKoala authored Sep 29, 2024
1 parent 26149ce commit 5a98225
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/update-set-implementation-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5a98225

Please sign in to comment.