From 0426e6b94f36614023e7ed158d68a4fee3300e01 Mon Sep 17 00:00:00 2001 From: Jensen Yap Date: Tue, 2 Sep 2025 22:40:12 +0900 Subject: [PATCH] Update dbt integration test workflow to refine environment conditions - Adjusted the warehouse selection logic to include 'workflow_dev' alongside 'workflow_prod' for using 'DBT_CLOUD'. - Enhanced the environment assignment to ensure accurate mapping for 'workflow_dev' and 'workflow_prod', improving the workflow's clarity and functionality. --- .github/workflows/dbt_integration_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dbt_integration_test.yml b/.github/workflows/dbt_integration_test.yml index 10a2e67..e16a798 100644 --- a/.github/workflows/dbt_integration_test.yml +++ b/.github/workflows/dbt_integration_test.yml @@ -41,6 +41,6 @@ jobs: uses: ./.github/workflows/dbt.yml secrets: inherit with: - warehouse: ${{ (github.event.inputs.environment == 'prod' || github.event.inputs.environment == 'workflow_prod') && 'DBT_CLOUD' || 'XSMALL' }} + warehouse: ${{ (github.event.inputs.environment == 'workflow_prod' || github.event.inputs.environment == 'workflow_dev') && 'DBT_CLOUD' || 'XSMALL' }} environment: ${{ github.event.inputs.environment == 'workflow_prod' && 'prod' || (github.event.inputs.environment == 'workflow_dev' && 'dev' || github.event.inputs.environment) }} command: dbt test -s test___utils_udf_introspect