diff --git a/.github/workflows/dbt_run_scheduled.yml b/.github/workflows/dbt_run_scheduled.yml index c49fb4e..761e7af 100644 --- a/.github/workflows/dbt_run_scheduled.yml +++ b/.github/workflows/dbt_run_scheduled.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_blocks.yml b/.github/workflows/dbt_run_streamline_blocks.yml index fbd6fe8..44fff1d 100644 --- a/.github/workflows/dbt_run_streamline_blocks.yml +++ b/.github/workflows/dbt_run_streamline_blocks.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_collections.yml b/.github/workflows/dbt_run_streamline_collections.yml index 2e343bc..5590c89 100644 --- a/.github/workflows/dbt_run_streamline_collections.yml +++ b/.github/workflows/dbt_run_streamline_collections.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_transaction_results.yml b/.github/workflows/dbt_run_streamline_transaction_results.yml index 496e4e6..46de0aa 100644 --- a/.github/workflows/dbt_run_streamline_transaction_results.yml +++ b/.github/workflows/dbt_run_streamline_transaction_results.yml @@ -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 }}" diff --git a/.github/workflows/dbt_run_streamline_transactions.yml b/.github/workflows/dbt_run_streamline_transactions.yml index 1d2ae49..dd8f1c1 100644 --- a/.github/workflows/dbt_run_streamline_transactions.yml +++ b/.github/workflows/dbt_run_streamline_transactions.yml @@ -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 }}"