Learn how to use triggers to automatically run workflows
Triggers are the first step in building a workflow. They determine when and how your workflow should run.Think of triggers as the “when” of your workflow - they define the conditions or events that will cause your workflow to execute.When building a workflow in the Workflows Builder, selecting a trigger is always the first step. The trigger you choose will determine what data is available to subsequent steps in your workflow and how the workflow can be initiated.
To create a trigger, click the “Add Trigger” button in the bottom left corner of the Workflows Builder and select the type of trigger you want to create.
Schedule triggers let you run workflows automatically at specified intervals using cron expressions. For example:
Every hour: 0 * * * *
Daily at midnight: 0 0 * * *
Every Monday at 9am: 0 9 * * 1
This is perfect for:
Regular batch processing
Periodic data updates
Automated reporting
Scheduled maintenance tasks
If you’re not familiar with cron expressions, you can use the Cronify tool to help. It converts natural language (like “every Monday at 9am”) into the correct cron expression format.