From a8fff7214f2600df14548d465036f53bed26678c Mon Sep 17 00:00:00 2001 From: Josh Meek Date: Wed, 7 Oct 2020 09:56:14 -0400 Subject: [PATCH] Update changelog generation script to look for .yml files --- update_changelog.py | 1 + 1 file changed, 1 insertion(+) diff --git a/update_changelog.py b/update_changelog.py index cb339cff..62dd1999 100644 --- a/update_changelog.py +++ b/update_changelog.py @@ -33,6 +33,7 @@ def get_change_files(): change_files = sorted(glob.glob(os.path.join(CHANGES_DIR, "*.yaml"))) + change_files.extend(sorted(glob.glob(os.path.join(CHANGES_DIR, "*.yml")))) change_files = [p for p in change_files if not p.endswith("EXAMPLE.yaml")] return change_files