I have been using this workflow for a while - I have a custom cron set to execute every other day at 11am. The triggers continually seem to miss the timing and miss the days. I have already made sure the timezone lines up but I just don’t get why it is firing so randomly or not firing at all - aka: nothing is right. If anyone has any suggestions please let me
Hi @Cole_Morris
A cron expression can’t hold a true “every other day” schedule. The */2 in the day-of-month field resets at the start of each month, so it runs the 1st, 3rd, 5th and so on, then the 31st and the next 1st fall only a day apart and the cadence drifts and skips from there.
Drop the custom cron and use the Schedule Trigger’s built-in interval instead: set Trigger Interval to Days, Days Between Triggers to 2, Trigger at Hour to 11am, and Trigger at Minute to 0. That fires every two days at 11:00 from the point you publish, with no monthly reset.

