From 1e80b711cd01ed62745af33876bfa40c8611bc6e Mon Sep 17 00:00:00 2001 From: Austin Date: Thu, 9 Oct 2025 07:31:30 -0400 Subject: [PATCH] account storage wf --- ...daily_realtime.yml => dbt_run_streamline_daily.yml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{dbt_run_streamline_evm_daily_realtime.yml => dbt_run_streamline_daily.yml} (82%) diff --git a/.github/workflows/dbt_run_streamline_evm_daily_realtime.yml b/.github/workflows/dbt_run_streamline_daily.yml similarity index 82% rename from .github/workflows/dbt_run_streamline_evm_daily_realtime.yml rename to .github/workflows/dbt_run_streamline_daily.yml index d238f6a..2f8f804 100644 --- a/.github/workflows/dbt_run_streamline_evm_daily_realtime.yml +++ b/.github/workflows/dbt_run_streamline_daily.yml @@ -1,11 +1,11 @@ -name: dbt_run_streamline_evm_daily_realtime -run-name: dbt_run_streamline_evm_daily_realtime +name: dbt_run_streamline_daily +run-name: dbt_run_streamline_daily on: workflow_dispatch: schedule: - # Daily at 00:00 UTC (see https://crontab.guru) - - cron: "0 0 * * *" + # Daily at 4:30 am UTC (see https://crontab.guru) + - cron: "30 4 * * *" env: USE_VARS: "${{ vars.USE_VARS }}" @@ -43,7 +43,7 @@ jobs: - name: Run DBT Jobs run: | - dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -s 1+streamline__contract_abis_realtime + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -s 1+streamline__contract_abis_realtime 1+streamline__get_account_storage_realtime notify-failure: needs: [run_dbt_jobs]