diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index f5ed830b38f..7f95b3d1a6e 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -124,6 +124,8 @@ jobs: }); } } + implemented.sort((a, b) => a.name.localeCompare(b.name)); + unimplemented.sort((a, b) => a.name.localeCompare(b.name)); const body = mustache.render(cardIssueTemplate, { hasUnimplementedCards: unimplemented.length > 0, hasImplementedCards: implemented.length > 0,