📝 Overview
With Cron settings, you can adjust the execution frequency of your workflows in Yoom. Whether you want something to run daily, weekly, or at specific intervals, Cron gives you full control.
🔍 How to Configure Cron Settings
1️⃣ Configuration Location
Open the workflow template.
Set a schedule trigger, and select “Schedule” for the trigger type.
In the schedule settings screen, choose "Advanced (Cron)".
2️⃣ How to Write Cron Expressions
Cron uses 5 field format:
* * * * *
│ │ │ │ └── Day of the Week (0 - 7) → Sunday = 0 or 7
│ │ │ └──── Month (1 - 12)
│ │ └────── Day of the Month (1 - 31)
│ └──────── Hour (0 - 23)
└────────── Minute (0 - 59)
Use these fields to define when your Flowbot should run.
Cron Expressions | Execution Time |
43 23 * * * | Runs at 23:43 |
12 05 * * * | Runs at 05:12 |
0 17 * * * | Runs at 17:00 |
0 17 * * 1 | Runs at 17:00 every Monday |
0,10 17 * * 0,2,3 | Runs at 17:00 and 17:10 every Sunday, Tuesday, and Wednesday |
0-10 17 1 * * | Runs every minute from 17:00 to 17:10 on the 1st of every month |
0 0 1,15 * 1 | Runs at 0:00 on the 1st and 15th of the month and on Mondays |
42 4 1 * * | Runs at 4:42 on the 1st of every month |
0 21 * * 1-6 | Runs at 21:00 every Monday through Saturday |
0,10,20,30,40,50 * * * * | Runs every 10 minutes |
*/10 * * * * | Runs every 10 minutes |
* | Runs every minute from 1:00 to 1:59 |
0 1 * * * | Runs at 1:00 |
0 */1 * * * | Runs at 00 minutes past every hour |
2 8-20/3 * * * | Runs at 8:02, 11:02, 14:02, 17:02, and 20:02 |
30 5 1,15 * * | Runs at 5:30 on the 1st and 15th of the month |
That's it! 🎉
You've now completed your Cron settings and your Flowbot will execute according to your defined schedule.
Related Keywords
Related Keywords
operations, schedule, schedule trigger, settings, cron