I've a requirement to pass the Argo outputs back to workflow which are generated in a another workflow template
So I have ONE Workflow called A and TWO WorkflowTemplates called B and C
When I run my Workflow A it invokes WorkflowTemplate B and then B invokes another WorkflowTemplate C
The trigger flow is like this A -> B -> c
Now the WorkflowTemplate C produces the outputs as an artifact. I want to pass these outputs back to WorkflowTemplate B and the same should be passed back to Workflow A. So that I can use that output as an input to another task in the same Workflow A
The outputs passing flow should be like C -> B -> A
Is there any way in argo workflows to do this? Can you point me to an example?