i am looking for something like dynamic trigger, how i can do this?
1 day for the seek setup
2 hours of the day interval
3 current trigger setup
4 add optional trigger
use case
monday to friday 9 to 17 check the email every 5 min
monday to friday 18 to 8 check the email every 1 hour and send out of office email reply based on set of conditions
weekend check mail every 4 hours and send out of office email reply based on set of conditions
You can set custom schedule trigger in the “schedule trigger” node with “custom cron” based format.
For example :
Monday to friday to 17 check the mail every 5 min would be : */5 9-16 * * 1-5
*/5 → Every 5 minutes
9-16 → Between 09:00 and 16:55 (because it’s every 5 minutes)
* * 1-5 → Every day from monday to friday
chatGPT is not bad at generating them so you can just ask for the other cases
And because your workflow changes slightly between the cases, you can duplicate the same and make some modifications where needed depending on the schedule trigger you want !