diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index b6045360d1ccde..29c9f7db3ee2b8 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -78,9 +78,11 @@ jobs: - name: Tests id: server_integration_tests - if: ${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }} + if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }} run: | - echo " id=${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }} matrix.disabled_on_pr=${{ matrix.disabled_on_pr }} github.event.pull_request=${{ github.event.pull_request }}" + echo id=${{ !matrix.disabled_on_pr || !github.event.pull_request }} + echo !matrix.disabled_on_pr=${{ !matrix.disabled_on_pr }} + echo !github.event.pull_request=${{ !github.event.pull_request }} cd examples/server/tests PORT=8888 ./tests.sh