Skip to content

Commit

Permalink
Update changelog generation script to look for .yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmeek committed Oct 7, 2020
1 parent 1f41b5a commit a8fff72
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions update_changelog.py
Expand Up @@ -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

Expand Down

0 comments on commit a8fff72

Please sign in to comment.