From 39d815328d0f47799878e87766db45966cf08e84 Mon Sep 17 00:00:00 2001 From: Mads Bisgaard Date: Mon, 9 Dec 2024 15:00:26 +0100 Subject: [PATCH] yet another fix --- .github/workflows/ci-testing-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-testing-deploy.yml b/.github/workflows/ci-testing-deploy.yml index b1be6c04d23..50765b74cdc 100644 --- a/.github/workflows/ci-testing-deploy.yml +++ b/.github/workflows/ci-testing-deploy.yml @@ -2670,7 +2670,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ensure job passes if not PR # ensure pass so upstream jobs which depend on this will run (dockerhub deployment) - if: ${{ github.event.pull_request != null }} + if: ${{ github.event.pull_request == null }} run: echo "::notice Passing job because not in PR"; exit 0 - name: setup python environment uses: actions/setup-python@v5 @@ -2699,7 +2699,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ensure job passes if not PR # ensure pass so upstream jobs which depend on this will run (dockerhub deployment) - if: ${{ github.event.pull_request != null }} + if: ${{ github.event.pull_request == null }} run: echo "::notice Passing job because not in PR"; exit 0 - name: setup python environment uses: actions/setup-python@v5