Update update-set-implementation-lists.yml

This commit is contained in:
ExpensiveKoala 2024-09-29 03:04:18 -07:00 committed by GitHub
parent f53a0634ce
commit 3b59a0df62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -134,11 +134,13 @@ jobs:
if (body.length > 65536) {
console.log(`Issue body for ${set[0]} (${set[1]}) too long! Length: ${body.length}`);
const splitBody = splitter(body, 65536);
console.log(`Body was split into ${splitBody.length} chunks`);
splitBody.forEach(b => {
console.log(b.length);
});
console.log("Shortened?: " + mustache.render(cardIssueTemplate, {
hasUnimplementedCards: unimplemented.length > 0,
hasImplementedCards: implemented.length > 0,
unimplementedCards: unimplemented,
implementedCards: implemented,
unimplementedScryfallLink: `https://scryfall.com/search?q=!"${unimplemented.map(e => e.cleanName)`
}).length);
//continue;
}