An 4138/tune workflows (#185)

* tune

* tests
This commit is contained in:
Austin 2023-11-02 14:51:50 -04:00 committed by GitHub
parent be4482591d
commit c86d5f8cef
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 40 past every 4th hour.” (see https://crontab.guru)
- cron: '40 */4 * * *'
branches:
- "main"
env:
DBT_PROFILES_DIR: ./

View File

@ -1,6 +1,7 @@
workflow_name,workflow_schedule
dbt_run_scheduled_non_realtime,"9,21,33,45,57 * * * *"
dbt_run_scheduled_non_realtime,"8,20,32,44,56 * * * *"
dbt_run_streamline_chainhead,"4,16,28,40,52 * * * *"
dbt_run_streamline_decoder,"6,18,30,42,54 * * * *"
dbt_run_streamline_decoder,"1,13,25,37,49 * * * *"
dbt_run_scheduled_curated,"25,55 * * * *"
dbt_test_intraday,"37 */4 * * *"
dbt_test_tasks,"10,40 * * * *"
1 workflow_name workflow_schedule
2 dbt_run_scheduled_non_realtime 9,21,33,45,57 * * * * 8,20,32,44,56 * * * *
3 dbt_run_streamline_chainhead 4,16,28,40,52 * * * *
4 dbt_run_streamline_decoder 6,18,30,42,54 * * * * 1,13,25,37,49 * * * *
5 dbt_run_scheduled_curated 25,55 * * * *
6 dbt_test_intraday 37 */4 * * *
7 dbt_test_tasks 10,40 * * * *