Files
mistral-tempest-plugin/mistral_tempest_tests/tests/resources/wf_v2.yaml
Takashi Kajinami 2bf69040b4 Remove unnecessary +x mode
These files are not actually executable.

Change-Id: I05265d80fcf96628ef313c08b255e9659b088ea6
2025-04-16 12:11:20 +09:00

66 lines
889 B
YAML

---
version: '2.0'
wf:
type: direct
tasks:
hello:
action: std.echo output="Hello"
wait-before: 1
publish:
result: <% task(hello).result %>
wflong:
type: direct
tasks:
hello:
action: std.echo output="Hello"
wait-before: 60
publish:
result: <% task(hello).result %>
wf1:
type: reverse
input:
- farewell
tasks:
addressee:
action: std.echo output="John"
publish:
name: <% task(addressee).result %>
goodbye:
action: std.echo output="<% $.farewell %>, <% $.name %>"
requires: [addressee]
wf2:
type: direct
tasks:
hello:
action: std.echo output="Doe"
subwf1:
type: direct
tasks:
task1:
workflow: subwf2
subwf2:
type: direct
tasks:
task1:
workflow: subwf3
subwf3:
type: direct
tasks:
task1:
action: std.noop