I would like to schedule a cron task to run every hour, but only from Thursday through Monday. Is a schedule like this possible? From the documentation, it looks like I can schedule a cron task to run at an hourly interval or on specific days at a single specific time, but I cannot figure out how to schedule a cron task to run at an hourly interval only on specific days.
I've tried schedules like the following in cron.yaml
:
every 1 hours thu,fri,sat,sun,mon
every 1 hours of thu,fri,sat,sun,mon
The way I read the documentation, I think this may be impossible. I'm hoping that I've either missed something or that there is some undocumented syntax for what I'm trying to accomplish.