Break
IN THIS ARTICLE
In Albato, the Break tool stops an automation at a specific step. When the flow reaches the Break step, execution is completely terminated, no further actions run. This makes Break especially useful for controlling logic in automations with conditions, validation, or branching.
How to Use Break
As an example, imagine you receive leads from Google Sheets and need to prevent duplicate records from being processed. Here is how to set up the automation.
Step 1. Set up the initial steps
Open the Automation Builder and add the following steps:
- Step 1 — Google Sheets: New row created
- Step 2 — Tool: Automation delay (optional, ensures data is fully loaded)
- Step 3 — Google Sheets: Find a row by number

Step 2. Add a Router
Add a Router step to create branching logic. Configure the condition:
- Field — value from the trigger (for example, email or phone);
- Condition — Not equal to;
- Value — result from the search step.

This splits the flow into two branches:
- Then (conditions met) — record not found → the automation stops (Break).
- Else (conditions not met) — record found → the automation continues to the next step.
Step 3. Add Break to the branch
Add the Break tool to the branch where the automation should stop. The tool does not require any configuration, once triggered, it immediately stops the execution.
Step 4. Define the next action in the other branch
In the branch where the automation should continue, add the next step, for example, create a contact or update a row.
Result
- Record not found → automation stops at Break
- Record found → automation continues to the next step
Break vs. Automation Delay
Do not confuse Break with Automation delay:
- Break — completely stops the automation
- Automation delay — pauses the automation for a set time, then continues execution
Use Automation delay before a search step to ensure the data is fully processed before the check runs. Use Break when the automation must stop entirely.
When to Use Break
Use the Break tool when you need to stop execution completely:
- Preventing duplicate records.
- Stopping processing of invalid data.
- Blocking actions when required conditions are not met.
- Handling edge cases in branching logic.
The Break tool gives you full control over when your automation should stop. When combined with Router, it allows you to build clean and predictable flows. Use Automation delay when you need to pause, and Break when you need to stop. If you have any questions, contact our support team via the chat.
Did this answer your question?