From 8792dc18161ed534078679df9a041677de5d7c5e Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Sun, 29 Sep 2024 07:06:30 -0400 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 2 ++ 1 file changed, 2 insertions(+) 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,