Beginner
How to set up a schedule trigger on n8n
Quick Answer
Access n8n Workflow Editor, add Schedule Trigger node, configure Trigger Interval and rules like minutes between triggers or Cron expression, test with Execute Node, save, publish, and activate the workflow. Ensure correct timezone settings at workflow or instance level. Connect to downstream nodes for automation.
Prerequisites
- Active n8n instance or Cloud account
- Access to workflow editor
- Basic understanding of timezones
- Knowledge of desired schedule intervals
- Empty or existing workflow canvas
1
Access Workflow Editor
Log in to your n8n instance and navigate to the Workflows section in the left sidebar. Click New to create a new workflow or open an existing one to enter the canvas-based Workflow Editor.
2
Add Schedule Trigger Node
In the Workflow Editor canvas, click the + icon in the center or top-right to open the Nodes Panel. Search for
Schedule Trigger in the search bar, then select and drag it to the canvas.Tip
The Schedule Trigger must be the entry point of your workflow.
3
Open Node Settings
Click the added Schedule Trigger node to open its configuration panel in the left sidebar. This displays Node parameters including Trigger Rules and Trigger Interval options.
4
Select Trigger Interval
Choose a Trigger Interval from the dropdown: Seconds, Minutes, Hours, Days, Weeks, Months, or Custom (Cron). Use Add Trigger Rule button for multiple rules.
Tip
Start with Minutes for frequent testing, e.g., every 10 minutes.
5
Configure Minutes Interval
For Minutes Interval, set Minutes Between Triggers (default: 1, e.g.,
10 for every 10 minutes). This runs the workflow repeatedly at fixed intervals.6
Configure Hours, Days, Weeks, Months
For Hours: Set Hours Between Triggers (e.g.,
For Days: Set Days Between Triggers (e.g.,
For Weeks: Set Weeks Between Triggers, Trigger on Weekdays (e.g., Monday), hour and minute.
For Months: Set Months Between Triggers, Trigger at Day of Month (1-31), hour and minute.
6) and Trigger at Minute (0-59).For Days: Set Days Between Triggers (e.g.,
2), Trigger at Hour (e.g., 9am), Trigger at Minute (e.g., 15).For Weeks: Set Weeks Between Triggers, Trigger on Weekdays (e.g., Monday), hour and minute.
For Months: Set Months Between Triggers, Trigger at Day of Month (1-31), hour and minute.
Tip
Months won't trigger if the day exceeds the month's length, e.g., 31st in February.
7
Set Custom Cron Expression
For Custom (Cron), enter a Cron Expression like
0 9 * * 1-5 for 9:00 AM weekdays. Generate expressions using tools like crontab.guru.Tip
Cron format:
minute hour day month weekday.8
Configure Timezone
Set the correct timezone in Settings > General for the workflow (overrides instance timezone) or n8n instance. The node uses workflow timezone first.
Tip
Verify timezone to avoid unexpected trigger times.
9
Test the Trigger
Click Execute Node (play button) in the node's top-right to simulate a run instantly and verify output data without waiting for the schedule.
Tip
Always test before production use.
10
Connect, Save, and Activate
Drag from the Schedule Trigger output (+) to the next node's input. Click Save in the top-right, then toggle the workflow Active switch to on—publishing is required for scheduling.
Tip
Workflow must be published and active to run on schedule.
Troubleshooting
Trigger runs at unexpected times
Verify timezone hierarchy: workflow timezone overrides instance timezone. Check both in Settings > General.
Schedule Trigger never fires
Ensure workflow is saved, published, and active. Saving alone is insufficient—toggle Active switch on.
Incorrect interval behavior
Review interval-specific parameters like Hours Between Triggers or Trigger at Minute. Test with Execute Node.
Hours interval not triggering on n8n Cloud
Confirm settings like Hours Between Triggers (e.g., 8) and Trigger at Minute (e.g., 45). Check workflow status and timezone.
Complex schedule not working
Use Custom Cron for advanced needs. Validate expression with crontab.guru and test individual rules.
Ready to get started with n8n?
Put this tutorial into practice. Visit n8n and follow the steps above.
Visit n8n →