Hi, I’m building a flow that requires to run on the third Tuesday of every month.
The way I’m thinking about it is that, depending on the first day of the month, the 3rd Tuesday could be between the 15th day of the month and the 21st. With that in mind, I’m setting up the cron to run the 15, 16, 17, 18, 19, 20, and 21 day of the month and selecting the day of the week as Tuesday. If I want to it to run every month at 6:05 am, the cron I’d get is: ? 5 6 15, 16, 17, 18, 19, 20, 21 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 2. Is that correct?
Thanks!