chg schedule to 3x/hour (#244)

* chg schedule to 3x/hour

* blocks

* dbt schd
This commit is contained in:
Jack Forgash 2023-12-13 19:32:13 -07:00 committed by GitHub
parent cf26afc365
commit 9690c3102c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 deletions

View File

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

View File

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

View File

@ -5,9 +5,9 @@ on:
workflow_dispatch:
schedule:
# 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 * * * *"
# - cron: "8,21,36,51 * * * *"
# 3x/hour schedule = At minute 11, 31, and 51 every hour (see https://crontab.guru)
- cron: "11,31,51 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

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

View File

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