-
Notifications
You must be signed in to change notification settings - Fork 15
feat: add flow_input to StepTaskRecord and context objects #555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 12-22-remove-run-key
Are you sure you want to change the base?
feat: add flow_input to StepTaskRecord and context objects #555
Conversation
|
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
|
View your CI Pipeline Execution ↗ for commit a13db51
☁️ Nx Cloud last updated this comment at |
c2282ec to
a13db51
Compare

Add flow_input to StepTaskRecord and expose it in worker context
This PR adds the original flow input to the
StepTaskRecordtype and exposes it throughout the worker context. This allows dependent steps to access the original flow input parameters, which is useful for maintaining context across multi-step flows.The changes:
flow_inputfield toStepTaskRecordin core typesStepTaskExecutionandStepTaskWithMessageinterfacesThis enhancement enables step implementations to reference the original parameters that started the flow, improving the ability to build steps that depend on initial configuration.