diff --git a/scripts/release-diff.py b/scripts/release-diff.py index f2e84d8ad94..240faa90dc7 100644 --- a/scripts/release-diff.py +++ b/scripts/release-diff.py @@ -142,7 +142,13 @@ def load_at_time(path, revision=None): def main(old_revision, new_revision=None): - files_to_diff = glob.glob("config/*.yml.sample") + glob.glob('lib/galaxy/webapps/galaxy/*schema.yml') + globs = ( + "config/*.yml.sample", + "lib/galaxy/config/schemas/*schema.yml", + "lib/galaxy/webapps/reports/config_schema.yml", + "lib/tool_shed/webapp/config_schema.yml", + ) + files_to_diff = [f for g in globs for f in glob.glob(g)] added = {} removed = {} changed = {}