From 315b30d32691702af34a0f025ac60f67c134dd16 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Thu, 1 Feb 2024 14:48:34 -0600 Subject: [PATCH] fix conditional, remove bebugging --- .github/workflows/ci_dbt_core_testing.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci_dbt_core_testing.yml b/.github/workflows/ci_dbt_core_testing.yml index b49fa947..fad95394 100644 --- a/.github/workflows/ci_dbt_core_testing.yml +++ b/.github/workflows/ci_dbt_core_testing.yml @@ -75,9 +75,6 @@ jobs: run: | echo "inputs.dbt-core-ref=${{ inputs.dbt-core-ref }}" echo "inputs.dbt-common-ref=${{ inputs.dbt-common-ref }}" - echo "event_name=${{ github.event_name }}" - echo "github.event.label.name=${{github.event.label.name}}" - echo "test="${{ github.event_name != 'pull_request' }} && ${{ !contains(github.event.label.name, 'Skip Core Testing')}} - name: "Determine dbt-core ref" id: core-ref @@ -196,7 +193,7 @@ jobs: dbt-core-integration-tests: name: (${{ matrix.split-group }}) integration test / python ${{ matrix.python-version }} / ${{ matrix.os }} - if: ${{ github.event_name != 'pull_request' }} && ${{ !contains(github.event.label.name, 'Skip Core Testing')}} + if: ${{ github.event_name != 'pull_request' && !contains(github.event.label.name, 'Skip Core Testing')}} runs-on: ${{ matrix.os }} timeout-minutes: 30