chg schedule to 4x/hour (#243)

This commit is contained in:
Jack Forgash 2023-12-13 08:33:54 -07:00 committed by GitHub
parent e8851383c9
commit cf26afc365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 10 deletions

View File

@ -4,8 +4,10 @@ run-name: dbt_run_scheduled
on:
workflow_dispatch:
schedule:
# Every 20 minutes (see https://crontab.guru)
- cron: "*/20 * * * *"
# 4x/day schedule = Every 15 minutes (see https://crontab.guru)
- cron: "*/15 * * * *"
# 3x/day schedule = Every 20 minutes (see https://crontab.guru)
# - cron: "*/20 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,10 @@ run-name: dbt_run_streamline_blocks
on:
workflow_dispatch:
schedule:
# At minute 10, and 40 every hour (see https://crontab.guru)
- cron: "7,27,47 * * * *"
# 4x/hour schedule = At minute 3, 18, 33, 48 every hour (see https://crontab.guru)
- cron: "3,18,33,48 * * * *"
# 3x/hour schedule = At minute 7, 27, 47 every hour (see https://crontab.guru)
# - cron: "7,27,47 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,10 @@ run-name: dbt_run_streamline_collections
on:
workflow_dispatch:
schedule:
# At minute 15, and 45 every hour (see https://crontab.guru)
- cron: "11,31,51 * * * *"
# 4x/hour schedule = At minute 8, 21, 36, 51 every hour (see https://crontab.guru)
- cron: "8,21,36,51 * * * *"
# 3x/hour schedule = At minute 15, and 45 every hour (see https://crontab.guru)
# - cron: "11,31,51 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,10 @@ run-name: dbt_run_streamline_transaction_results
on:
workflow_dispatch:
schedule:
# At minute 20, and 50 every hour (see https://crontab.guru)
- cron: "15,35,55 * * * *"
# 4x/hour schedule = At minute 12, 27, 42, 57 every hour (see https://crontab.guru)
- cron: "12,27,42,57 * * * *"
# 3x/hour schedule = At minute 15, 35, 55 every hour (see https://crontab.guru)
# - cron: "15,35,55 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,10 @@ run-name: dbt_run_streamline_transactions
on:
workflow_dispatch:
schedule:
# At minute 20, and 50 every hour (see https://crontab.guru)
- cron: "20,50 * * * *"
# 4x/hour schedule = At minute 12, 27, 42, 57 every hour (see https://crontab.guru)
- cron: "12,27,42,57 * * * *"
# 3x/hour schedule = At minute 15, 35, 55 every hour (see https://crontab.guru)
# - cron: "15,35,55 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"