We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cbf205 commit c19b6b1Copy full SHA for c19b6b1
1 file changed
.github/workflows/scripts/package-versions.py
@@ -63,7 +63,7 @@ def level(package: str) -> int:
63
return 0
64
elif package in ["overture-schema-core"]:
65
return 1
66
- elif re.fullmatch(r'overture-schema-.*-theme', package) or package in ["overture-schema", "overture-schema-cli", "overture-schema-annex"]:
+ elif re.fullmatch(r'overture-schema-.*-theme', package) or package in ["overture-schema", "overture-schema-cli", "overture-schema-codegen", "overture-schema-annex"]:
67
return 2
68
else:
69
raise ValueError(f"Unknown package for level computation: {package}")
0 commit comments