3a4c1ff8f3
Depends-On: I25e0d048222b6b7b1f3ffb3a9cf5029b7e6bcf45 Change-Id: I1bd4c15f0990f5d2d879855770763e8b19d2561d
29 lines
439 B
YAML
29 lines
439 B
YAML
---
|
|
version: '2.0'
|
|
|
|
wf:
|
|
type: direct
|
|
|
|
tasks:
|
|
hello:
|
|
action: std.echo output="Hello"
|
|
wait-before: 5
|
|
publish:
|
|
result: <% $.hello %>
|
|
|
|
wf1:
|
|
type: reverse
|
|
tags: [tag]
|
|
input:
|
|
- farewell
|
|
|
|
tasks:
|
|
addressee:
|
|
action: std.echo output="John"
|
|
publish:
|
|
name: <% $.addressee %>
|
|
|
|
goodbye:
|
|
action: std.echo output="<% $.farewell %>, <% $.name %>"
|
|
requires: [addressee]
|