Skip to content

Commit 8cc2449

Browse files
author
Alan Christie
committed
feat: Add running_workflow_step_inputs to LaunchParameters
1 parent b930811 commit 8cc2449

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

workflow/workflow_abc.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ class LaunchParameters:
6262
running_workflow_step_prior_step_output_map: (
6363
dict[str, list[tuple[str, str]]] | None
6464
) = None
65+
# Workflow inputs (for this step Instance). These Workflow Inputs (files) are
66+
# expected to be present in the Project directory. They are typically a subset of
67+
# the Workflows variables - not necessarily all the workflow inputs, just the
68+
# ones that are required for this step. If provided the structure is expected to
69+
# match that found in a Job definition's variables->inputs.
70+
running_workflow_step_inputs: dict[str, Any] | None = None
6571
# The application ID (a custom resource name)
6672
# used to identify the 'type' of Instance to create.
6773
# For DM Jobs this will be 'datamanagerjobs.squonk.it'

0 commit comments

Comments
 (0)