We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3522c commit 0903021Copy full SHA for 0903021
.github/workflows/test.yml
@@ -22,7 +22,8 @@ jobs:
22
- run: npm test
23
24
- name: Deploy Preview
25
- if: ${{github.event_name == 'pull_request' && !(github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]')}}
+ # Only run this job if the repository is NOT a fork
26
+ if: ${{ github.event.pull_request.head.repo.full_name == github.repository && !(github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]') }}
27
uses: JamesIves/[email protected]
28
with:
29
branch: gh-pages
0 commit comments