Documentations for default workflows. a workflow is the combination of differents actions.
This workflow shows how to write a simple workflow with one action. A workflow is made up of two parts:
- property parameters
- actions list to execute
Property parameters override the parameters on each actions if the name is the same. Conditions between actions can be defined too.
- In the actions part, add the
description
of your action
actions:
- description: HelloWorld
- Add the path of the action
file: Common:actions/basic/helloworld.yml
- Overwrite parameters (optional)
parameters:
- name: msg
value: Hola Mundo
This workflow shows how to call the wait.yml
action by
overriding the duration parameter.
This workflow shows how to call two actions one after the other