Skip to content

Commit

Permalink
πŸ› yet another fix (ITISFoundation#6925)
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis authored Dec 9, 2024
1 parent 8167f88 commit bf06671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bf06671

Please sign in to comment.