From bf0667102029ac3efae6d48ae16a0b349e39cd7c Mon Sep 17 00:00:00 2001 From: Mads Bisgaard <126242332+bisgaard-itis@users.noreply.github.com> Date: Mon, 9 Dec 2024 15:02:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20yet=20another=20fix=20(#6925)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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