Skip to content

Commit c19b6b1

Browse files
committed
Add codegen package to package version level calculation
Signed-off-by: schapper <schapper@amazon.com>
1 parent 0cbf205 commit c19b6b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scripts/package-versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def level(package: str) -> int:
6363
return 0
6464
elif package in ["overture-schema-core"]:
6565
return 1
66-
elif re.fullmatch(r'overture-schema-.*-theme', package) or package in ["overture-schema", "overture-schema-cli", "overture-schema-annex"]:
66+
elif re.fullmatch(r'overture-schema-.*-theme', package) or package in ["overture-schema", "overture-schema-cli", "overture-schema-codegen", "overture-schema-annex"]:
6767
return 2
6868
else:
6969
raise ValueError(f"Unknown package for level computation: {package}")

0 commit comments

Comments
 (0)