Skip to content

Commit

Permalink
ci: don't deploy to preview for PRs that originate from dev
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Sep 27, 2024
1 parent e837edd commit 3822335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
name: Firebase preview
runs-on: ubuntu-latest
needs: [test-unit-ui, test-unit-python]
if: ${{ github.event.sender.type == 'User' }}
if: ${{ github.event.sender.type == 'User' }} && ${{ github.base_ref != 'dev' }}
environment:
name: dev

Expand Down

0 comments on commit 3822335

Please sign in to comment.