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

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.
Options
Section titled “ Options”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.
JSON Configuration
Section titled “ JSON Configuration”If you edit your menus.json file by hand or use the IPC interface, you can create this action with something like the following.
..."selectWorkflow": { "actions": [ ... { "type": "delay", "duration": 0.5 } ... ]}...