Skip to content

Delay

banner

This action pauses the workflow execution for a specified amount of time.

This action is often used to introduce a pause between actions in a workflow, allowing for timed delays or waiting for certain conditions to be met.

This action has the following options:

  • Duration: The duration of the delay in seconds. You can use decimal values to specify a delay of less than one second.

If you edit your menus.json file by hand or use the IPC interface, you can create this action with something like the following.

menus.json
...
"selectWorkflow": {
"actions": [
...
{
"type": "delay",
"duration": 0.5
}
...
]
}
...