Sequential
type: "io.kestra.core.tasks.flows.Sequential"
Process tasks ones after others sequentially
Mostly use in order to group tasks.
# Examples
id: sequential
namespace: io.kestra.tests
tasks:
- id: sequential
type: io.kestra.core.tasks.flows.Sequential
tasks:
- id: 1st
type: io.kestra.core.tasks.debugs.Return
format: "{{task.id}} > {{taskrun.startDate}}"
- id: 2nd
type: io.kestra.core.tasks.debugs.Return
format: "{{task.id}} > {{taskrun.id}}"
- id: last
type: io.kestra.core.tasks.debugs.Return
format: "{{task.id}} > {{taskrun.startDate}}"
# Properties
# errors
- Type: array
- SubType: Task
- Dynamic: ❌
- Required: ❌
List of tasks to run if any tasks failed on this FlowableTask
# tasks
- Type: array
- SubType: Task
- Dynamic: ❌
- Required: ✔️
- Min items:
1