This commit is contained in:
Austin 2023-11-02 14:56:46 -04:00 committed by GitHub
parent d05580d83a
commit 838f402eb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -3,9 +3,8 @@ run-name: dbt_test_intraday
on:
workflow_dispatch:
schedule:
# Runs “At minute 45 past every 4th hour.” (see https://crontab.guru)
- cron: '45 */4 * * *'
branches:
- "main"
env:
DBT_PROFILES_DIR: ./

View File

@ -1,6 +1,7 @@
workflow_name,workflow_schedule
dbt_run_scheduled_non_realtime,"6,18,30,42,54 * * * *"
dbt_run_scheduled_non_realtime,"4,16,28,40,52 * * * *"
dbt_run_streamline_chainhead,"0,12,24,36,48 * * * *"
dbt_run_streamline_decoder,"3,15,27,39,51 * * * *"
dbt_run_streamline_decoder,"9,21,33,45,57 * * * *"
dbt_run_scheduled_curated,"10,40 * * * *"
dbt_test_intraday,"23 */4 * * *"
dbt_test_tasks,"15,45 * * * *"
1 workflow_name workflow_schedule
2 dbt_run_scheduled_non_realtime 6,18,30,42,54 * * * * 4,16,28,40,52 * * * *
3 dbt_run_streamline_chainhead 0,12,24,36,48 * * * *
4 dbt_run_streamline_decoder 3,15,27,39,51 * * * * 9,21,33,45,57 * * * *
5 dbt_run_scheduled_curated 10,40 * * * *
6 dbt_test_intraday 23 */4 * * *
7 dbt_test_tasks 15,45 * * * *