mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 13:41:55 +00:00
chg schedule to 4x/hour (#243)
This commit is contained in:
parent
e8851383c9
commit
cf26afc365
6
.github/workflows/dbt_run_scheduled.yml
vendored
6
.github/workflows/dbt_run_scheduled.yml
vendored
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user