Blocks
Wait
The wait step: pause the run for a fixed duration — the payload passes through untouched when the pause ends.
Pause the run for a fixed duration, then continue with the payload untouched. The pause is durable — it's a scheduled job, not a sleeping process, so hours-long (or days-long) waits cost nothing and survive deploys.
Config
An amount and a unit — seconds, minutes, hours, or days.
Patterns
- Polite polling — inside a loop until body, space out status checks.
- Cool-down — send a reminder email, wait a day, check the store, escalate if still unresolved.
- Rate spacing — slow a chain that would otherwise hammer an API.