This commit is contained in:
forgash_ 2023-11-03 12:30:46 -06:00
parent 8e656f10ac
commit 4433dbe8dd
2 changed files with 5 additions and 4 deletions

View File

@ -4,8 +4,8 @@ run-name: dbt_run_scheduled
on:
workflow_dispatch:
schedule:
# Runs "every 15 minutes"
- cron: "*/15 * * * *"
# Runs "every 10 minutes, 5 mins after the realtime job
- cron: "5,15,25,35,45,55 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,9 +4,10 @@ run-name: dbt_run_streamline_realtime
on:
workflow_dispatch:
schedule:
# Runs "every 10 minutes"
- cron: "*/10 * * * *"
# Runs every 10 minutes
- cron: "0,10,20,30,40,50 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}"