deb-mistral/mistral/tests/resources/wb_with_nested_wf.yaml
Michal Gershenzon 553c2b7983 Add type to tasks API
In order for a user to know if the task execution is
of type workflow execution or action execution,
the type should be returned in the API

Partially implements: blueprint mistral-task-subexecutions-endpoint

Change-Id: I9ff474797df0f9cbbddfeda3292d582dfeb2b702
2016-11-08 14:56:18 +00:00

18 lines
261 B
YAML

---
version: "2.0"
name: wb_with_nested_wf
workflows:
wrapping_wf:
type: direct
tasks:
call_inner_wf:
workflow: inner_wf
inner_wf:
type: direct
tasks:
hello:
action: std.echo output="Hello from inner workflow"