schedules

This commit is contained in:
Eric Laurello 2023-10-20 15:17:50 -04:00
parent 62274b6b64
commit 627590e114
5 changed files with 10 additions and 10 deletions

View File

@ -4,8 +4,8 @@ run-name: dbt_run_scheduled
on:
workflow_dispatch:
schedule:
# Runs every half hour (see https://crontab.guru)
- cron: '*/30 * * * *'
# At minute 15, 35, and 55 every hour (see https://crontab.guru)
- cron: "15,35,55 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_blocks
on:
workflow_dispatch:
schedule:
# Runs every 15 minutes (see https://crontab.guru)
- cron: "*/15 * * * *"
# At minute 0, 20, and 40 every hour (see https://crontab.guru)
- cron: "0,20,40 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_collections
on:
workflow_dispatch:
schedule:
# Runs every 30 minutes (see https://crontab.guru)
- cron: "*/30 * * * *"
# At minute 5, 25, and 45 every hour (see https://crontab.guru)
- cron: "5,25,45 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_transaction_results
on:
workflow_dispatch:
schedule:
# Runs every 10 minutes (see https://crontab.guru)
- cron: "*/10 * * * *"
# At minute 10, 30, and 50 every hour (see https://crontab.guru)
- cron: "10,30,50 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_transactions
on:
workflow_dispatch:
schedule:
# Runs every 30 minutes (see https://crontab.guru)
- cron: "*/30 * * * *"
# At minute 10, 30, and 50 every hour (see https://crontab.guru)
- cron: "10,30,50 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"