diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index d8d50c055aa..40c6d86fdb6 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -103,12 +103,12 @@ jobs: issuesToCreate.push({ title: `${set[1]}: ${set[0]} Set Card Implementation Tracking`, body: mustache.render(cardIssueTemplate, { - hasUnimplementedCards: unimplemented.length > 0, - hasImplementedCards: implemented.length > 0, - unimplementedCards: unimplemented, - implementedCards: implemented, - unimplementedScryfallLink: `https://scryfall.com/search?q=!"${String.join('"OR!"', cleanCards)}"+e:${set[1]}` - }); + hasUnimplementedCards: unimplemented.length > 0, + hasImplementedCards: implemented.length > 0, + unimplementedCards: unimplemented, + implementedCards: implemented, + unimplementedScryfallLink: `https://scryfall.com/search?q=!"${String.join('"OR!"', cleanCards)}"+e:${set[1]}` + }) }); } });