Skip to content

Commit 5434ec8

Browse files
authored
feat: fill in collection_type in type guide (#658) (#661)
closes #658
2 parents eef33e7 + 0e71f35 commit 5434ec8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

catalog/py_package/catalog_build/iwc_manifest_to_workflows_yaml.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ def get_input_types(workflow_definition):
7878
step_input_guide["ext"] = input_formats[0]
7979
else:
8080
step_input_guide["ext"] = input_formats
81+
if collection_type := tool_state.get("collection_type"):
82+
step_input_guide["collection_type"] = collection_type
8183
inputs.append(
8284
WorkflowParameter(key=step_label, type_guide=step_input_guide)
8385
)

0 commit comments

Comments
 (0)