We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cad253 commit 69a80d1Copy full SHA for 69a80d1
.github/workflows/deploy.yml
@@ -176,7 +176,8 @@ jobs:
176
deploy-staging:
177
name: 🚁 Deploy staging app for PR
178
runs-on: ubuntu-24.04
179
- if: ${{ github.event_name == 'pull_request' }}
+ # Skip forks as they don't have access to secrets
180
+ if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository }}
181
outputs:
182
url: ${{ steps.deploy.outputs.url }}
183
environment:
0 commit comments