Skip to content

Commit bf06671

Browse files
🐛 yet another fix (#6925)
1 parent 8167f88 commit bf06671

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-testing-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2670,7 +2670,7 @@ jobs:
26702670
runs-on: ubuntu-latest
26712671
steps:
26722672
- name: Ensure job passes if not PR # ensure pass so upstream jobs which depend on this will run (dockerhub deployment)
2673-
if: ${{ github.event.pull_request != null }}
2673+
if: ${{ github.event.pull_request == null }}
26742674
run: echo "::notice Passing job because not in PR"; exit 0
26752675
- name: setup python environment
26762676
uses: actions/setup-python@v5
@@ -2699,7 +2699,7 @@ jobs:
26992699
runs-on: ubuntu-latest
27002700
steps:
27012701
- name: Ensure job passes if not PR # ensure pass so upstream jobs which depend on this will run (dockerhub deployment)
2702-
if: ${{ github.event.pull_request != null }}
2702+
if: ${{ github.event.pull_request == null }}
27032703
run: echo "::notice Passing job because not in PR"; exit 0
27042704
- name: setup python environment
27052705
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)