I would like to schedule a DAG on the first weekday of the month for every month. So for example this years it would have been scheduled at:
2024-01-01
2024-02-01
2024-03-01
2024-04-01
2024-05-01
2024-06-03 -----> here the third because the first is a Saturday
I have had a look at https://airflow.apache.org/docs/apache-airflow/stable/authoring-and-scheduling/timetable.html , but it seems quite complex to structure such DAG. Is this the only way to go for that kind scheduling ?