The problem I’m having
Some of my models need to be run on a daily basis and some on a monthly basis
What I have tried
I can think of different possibilities
- create different projects repositories → For me not an option
- create different execute commands with different triggers. Example
dbt build my_daily_models
dbt build my_monthly_models
The last option sounds good but sounds time consuming since I would have to adapt the run command every time I create or delete models.
What would be the best option ?