From 050e4e1a5f6287769e007d7dbaf8660cdd9e36b2 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Tue, 6 Feb 2024 09:29:18 -0600 Subject: [PATCH] force workflow failure --- .github/workflows/ci_dbt_core_testing.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_dbt_core_testing.yml b/.github/workflows/ci_dbt_core_testing.yml index b1dc3e02..5ee7c7df 100644 --- a/.github/workflows/ci_dbt_core_testing.yml +++ b/.github/workflows/ci_dbt_core_testing.yml @@ -280,6 +280,9 @@ jobs: runs-on: ubuntu-latest needs: [dbt-core-integration-tests] steps: + - name: Force failure for testing purposes! + run: exit 1 + - name: "Integration Tests Failed" if: ${{ contains(needs.dbt-core-integration-tests.result, 'failure') || contains(needs.dbt-core-integration-tests.result, 'cancelled') }} # when this is true the next step won't execute