Workflow Orchestration
Hello,
¿Is there something to coordinate different workflows?
For example, imagine that we have different workflows and I want to execute them sequentially:
- wf1 updates asset metadata
- wf2 publish videos to youtube
- wf3 tweets a couple of messages and posts in facebook in order to promote the published video
The idea behind is to reuse workflows as building blocks, instead of reusing only steps. Thus if I need to create a new workflow that consists of:
- wf1 updates asset metadata
- wf2 publish videos to youtube
- wf4 send an email to managers
I could reuse wf1 and wf2.
In other words, could I use a workflow as a step in a workflow?
Regards.