From 4433dbe8dd3eb73118fbca6a25b6297a94918c0e Mon Sep 17 00:00:00 2001 From: forgash_ Date: Fri, 3 Nov 2023 12:30:46 -0600 Subject: [PATCH] newline --- .github/workflows/dbt_run_scheduled.yml | 4 ++-- .github/workflows/dbt_run_streamline_realtime.yml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dbt_run_scheduled.yml b/.github/workflows/dbt_run_scheduled.yml index 49cb3ca..d793284 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 15 minutes" - - cron: "*/15 * * * *" + # Runs "every 10 minutes, 5 mins after the realtime job + - cron: "5,15,25,35,45,55 * * * *" 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 d4af813..9916104 100644 --- a/.github/workflows/dbt_run_streamline_realtime.yml +++ b/.github/workflows/dbt_run_streamline_realtime.yml @@ -4,9 +4,10 @@ run-name: dbt_run_streamline_realtime on: workflow_dispatch: schedule: - # Runs "every 10 minutes" - - cron: "*/10 * * * *" + # Runs every 10 minutes + - cron: "0,10,20,30,40,50 * * * *" + env: USE_VARS: "${{ vars.USE_VARS }}" DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}"