Bitbucket scheduled pipelines UI does not have an option for us to enter a cron expression and we can only run the pipeline hourly, daily or weekly. There is an option to create schedule via API call with cron expression in payload, however, unfortunately it does not accept a complex cron expression.
What could be the best way to achieve running the pipelines just on weekdays?
Looking for a better solution than these.
Is there a better option?
Found the solution here,
NOTE:
Cron expression 0 0 * * 1-5
does not work with bitbucket api but 0 0 * * MON-FRI
does.