From ab401ca4c42d660ff16cfdde9071068634daa83e Mon Sep 17 00:00:00 2001 From: Austin <93135983+austinFlipside@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:50:18 -0400 Subject: [PATCH] exclude from daily tests (#290) --- .github/workflows/dbt_test_daily.yml | 2 +- models/github_actions/github_actions__current_task_status.sql | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dbt_test_daily.yml b/.github/workflows/dbt_test_daily.yml index 1c34d87..e313fc7 100644 --- a/.github/workflows/dbt_test_daily.yml +++ b/.github/workflows/dbt_test_daily.yml @@ -42,4 +42,4 @@ jobs: dbt deps - name: Run DBT Jobs run: | - dbt test --exclude "polygon_models,tag:full_test" "polygon_models,tag:recent_test" livequery_models \ No newline at end of file + dbt test --exclude "polygon_models,tag:full_test" "polygon_models,tag:recent_test" "polygon_models,tag:gha_tasks" livequery_models \ No newline at end of file diff --git a/models/github_actions/github_actions__current_task_status.sql b/models/github_actions/github_actions__current_task_status.sql index 0d6786a..577a226 100644 --- a/models/github_actions/github_actions__current_task_status.sql +++ b/models/github_actions/github_actions__current_task_status.sql @@ -1,5 +1,6 @@ {{ config( - materialized = 'view' + materialized = 'view', + tags = ['gha_tasks'] ) }} {{ fsc_utils.gha_task_current_status_view() }} \ No newline at end of file