Skip to content

Commit

Permalink
[MAINTENANCE] Simplify CI YAML conditional for 0.17.12 release (#8612)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdkini authored Aug 24, 2023
1 parent aeb3064 commit 73ac871
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 73ac871

Please sign in to comment.