Support for post-transform of workflows #47
Unanswered
kenmuse
asked this question in
Feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When migrating a workflow, it's often necessary to apply additional logic to the completed workflow or job. For example, there's no way to:
Currently, the
transform
method (and related) only allow you to modify specific parts of the workflow as they are encountered. Having a transformation method which runs at the end of the process could enable these use-cases.The proposed functionality would be a transformation method that receives an Hash or object that represents the final generated workflow. Ideally, it would have a second input representing the source that was transformed. If this transform is present, it would return a Hash that represents the final workflow that will be rendered. If multiple transforms are presented, they would be chained together (or rejected as unsupported).
Beta Was this translation helpful? Give feedback.
All reactions