diff --git a/.github/workflows/dbt_run_scheduled.yml b/.github/workflows/dbt_run_scheduled.yml index 6e54a2a..22a1b48 100644 --- a/.github/workflows/dbt_run_scheduled.yml +++ b/.github/workflows/dbt_run_scheduled.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_blocks.yml b/.github/workflows/dbt_run_streamline_blocks.yml index 1de4872..3badb33 100644 --- a/.github/workflows/dbt_run_streamline_blocks.yml +++ b/.github/workflows/dbt_run_streamline_blocks.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_collections.yml b/.github/workflows/dbt_run_streamline_collections.yml index 7e56f07..f88dba0 100644 --- a/.github/workflows/dbt_run_streamline_collections.yml +++ b/.github/workflows/dbt_run_streamline_collections.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_transaction_results.yml b/.github/workflows/dbt_run_streamline_transaction_results.yml index 28a86a1..9f5124a 100644 --- a/.github/workflows/dbt_run_streamline_transaction_results.yml +++ b/.github/workflows/dbt_run_streamline_transaction_results.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_transactions.yml b/.github/workflows/dbt_run_streamline_transactions.yml index 928476c..e12a372 100644 --- a/.github/workflows/dbt_run_streamline_transactions.yml +++ b/.github/workflows/dbt_run_streamline_transactions.yml @@ -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 }}"