We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb80ba commit 422609aCopy full SHA for 422609a
vulnerabilities/pipelines/__init__.py
@@ -56,6 +56,7 @@ def __init__(
56
run_instance: PipelineRun = None,
57
selected_groups: List = None,
58
selected_steps: List = None,
59
+ **kwargs,
60
):
61
"""Load the Pipeline class."""
62
self.run = run_instance
@@ -68,6 +69,9 @@ def __init__(
68
69
self.execution_log = []
70
self.current_step = ""
71
72
+ # Optional args used as input in downstream pipeline steps
73
+ self.inputs = kwargs
74
+
75
def append_to_log(self, message):
76
if self.run and self.run.pipeline.live_logging:
77
self.run.append_to_log(message)
0 commit comments