diff --git a/.github/workflows/dbt_run_scheduled.yml b/.github/workflows/dbt_run_scheduled.yml index d719325..49cb3ca 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 20 minutes" - - cron: "*/20 * * * *" + # Runs "every 15 minutes" + - cron: "*/15 * * * *" env: USE_VARS: "${{ vars.USE_VARS }}" diff --git a/.github/workflows/dbt_run_streamline_history.yml b/.github/workflows/dbt_run_streamline_history.yml index 31d5390..07ac885 100644 --- a/.github/workflows/dbt_run_streamline_history.yml +++ b/.github/workflows/dbt_run_streamline_history.yml @@ -3,9 +3,6 @@ run-name: dbt_run_streamline_history on: workflow_dispatch: - schedule: - # Runs "every 20 minutes" - - cron: "*/20 * * * *" env: USE_VARS: "${{ vars.USE_VARS }}" diff --git a/.github/workflows/dbt_run_streamline_realtime.yml b/.github/workflows/dbt_run_streamline_realtime.yml index 59e7e20..d4af813 100644 --- a/.github/workflows/dbt_run_streamline_realtime.yml +++ b/.github/workflows/dbt_run_streamline_realtime.yml @@ -4,8 +4,8 @@ run-name: dbt_run_streamline_realtime on: workflow_dispatch: schedule: - # Runs "every 20 minutes" - - cron: "*/20 * * * *" + # Runs "every 10 minutes" + - cron: "*/10 * * * *" env: USE_VARS: "${{ vars.USE_VARS }}"