Skip to content

Loop

formatting...

Module contains step implementations for the Loop task.

End

Close the Loop task created by Start.

This means that any following tasks specified will not be part of the loop.

See Loop task documentation for more information.

Example

Then loop "{{ loop_values }}" as variable "loop_value" with name "test-loop"
Then log message "loop_value={{ loop_value }}"
Then end loop

Start

Create an instance of the Loop tasks which executes all wrapped tasks with a value from the list values.

values supports templating and must be a valid JSON list.

See Loop task documentation for more information.

Example

Then loop "{{ loop_values }}" as variable "loop_value" with name "test-loop"
Then log message "loop_value={{ loop_value }}"
Then end loop