I’m trying to set up a trigger for my automation to run on every 8th working day. I have created & uploaded a non-working day calendar for all weekends & holidays into the cloud and I have created the CRON expression “0 0 12 1/8 * ?” which defines it to run every 8 days starting after the 1st of the month.
My issue is I don’t know if the CRON expression will count non-working days as one of the “days” in the countdown to the 8th day.
As an example lets say the first of a new month starts on Saturday. That would mean I don’t want the 1st, 2nd, 8th, and 9th days of the month (weekends) to be counted by the CRON expression. In this scenario my desired day to run would be the 12th, but I’m afraid that the CRON expression would cause it to occur on the 8th.
In addition to my first question I wonder if the CRON expression would count any holidays that I have already designated as Non-Working days in its countdown.
Apologies if this has already been answered and please feel free to provide any kind of solution! Even if it is a workaround that could be implemented into the project itself!