diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 982f4e041bb..42202dada47 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -126,7 +126,7 @@ jobs: } implemented.sort((a, b) => a.name.localeCompare(b.name)); unimplemented.sort((a, b) => a.name.localeCompare(b.name)); - const body = mustache.render(cardIssueTemplate, { + let body = mustache.render(cardIssueTemplate, { hasUnimplementedCards: unimplemented.length > 0, hasImplementedCards: implemented.length > 0, unimplementedCards: unimplemented,