mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
Update update-set-implementation-lists.yml
This commit is contained in:
parent
26149cebe2
commit
5a98225393
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue