From dd7930dfce06f197e1763297b9aca23eb478a1ea Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 19 Jul 2022 10:36:17 -0400 Subject: [PATCH] CI - remove use_aliases from emoji command --- .github/tools/reformat_changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/tools/reformat_changelog.py b/.github/tools/reformat_changelog.py index 00ce5975..6dd39e20 100755 --- a/.github/tools/reformat_changelog.py +++ b/.github/tools/reformat_changelog.py @@ -23,7 +23,7 @@ class SectionType(TypedDict): def reformat(item_format: str, output_emoji: bool) -> None: data = [ - emojize(x.strip(), use_aliases=True, variant="emoji_type") + emojize(x.strip(), variant="emoji_type") for x in sys.stdin.readlines() if x.strip() ]