From 73ac87127fee0cc47d6b44f9ce5a2e29f9d90dea Mon Sep 17 00:00:00 2001 From: Chetan Kini Date: Thu, 24 Aug 2023 12:16:10 -0400 Subject: [PATCH] [MAINTENANCE] Simplify CI YAML conditional for 0.17.12 release (#8612) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c96a7d8fece3..cd4954ff5207 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -241,7 +241,9 @@ jobs: run: invoke ci-tests -m "unit" --xdist --timeout=1.5 --slowest=8 cloud-tests: - if: github.event.pull_request.draft == false && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' ) + # Simplifying conditional for purposes of 0.17.12 release due to issues with prior release not passing this condition + # if: github.event.pull_request.draft == false && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' ) + if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - name: Checkout