From 69b3e7183c887eba11d98d4100d014d4f8290c2f Mon Sep 17 00:00:00 2001 From: drethereum Date: Wed, 12 Nov 2025 13:26:06 -0700 Subject: [PATCH] new wfs --- .../dbt_run_scheduled_curated_daily.yml | 19 +++++++++++++++++++ .../dbt_run_streamline_reads_history.yml | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .github/workflows/dbt_run_scheduled_curated_daily.yml create mode 100644 .github/workflows/dbt_run_streamline_reads_history.yml diff --git a/.github/workflows/dbt_run_scheduled_curated_daily.yml b/.github/workflows/dbt_run_scheduled_curated_daily.yml new file mode 100644 index 00000000..1265ce9f --- /dev/null +++ b/.github/workflows/dbt_run_scheduled_curated_daily.yml @@ -0,0 +1,19 @@ +name: dbt_run_scheduled_curated_daily +run-name: dbt_run_scheduled_curated_daily + +on: + workflow_dispatch: + branches: + - "main" + +concurrency: + group: ${{ github.workflow }} + +jobs: + called_workflow_template: + uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@main + with: + command_name: Run Curated Daily Models + command: | + dbt run -m "fsc_evm,tag:silver,tag:balances" "fsc_evm,tag:gold,tag:balances" "fsc_evm,tag:curated_daily" "fsc_evm,tag:streamline,tag:balances,tag:complete" "fsc_evm,tag:streamline,tag:balances,tag:records" "fsc_evm,tag:streamline,tag:balances,tag:realtime" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:complete" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:realtime" --vars '{"STREAMLINE_INVOKE_STREAMS":True}' + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/dbt_run_streamline_reads_history.yml b/.github/workflows/dbt_run_streamline_reads_history.yml new file mode 100644 index 00000000..c488222f --- /dev/null +++ b/.github/workflows/dbt_run_streamline_reads_history.yml @@ -0,0 +1,19 @@ +name: dbt_run_streamline_reads_history +run-name: dbt_run_streamline_reads_history + +on: + workflow_dispatch: + branches: + - "main" + +concurrency: + group: ${{ github.workflow }} + +jobs: + called_workflow_template: + uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@main + with: + command_name: Run Reads History Models + command: | + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:complete" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:history" + secrets: inherit \ No newline at end of file