We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f54f9a commit f0603fcCopy full SHA for f0603fc
.github/workflows/update.yml
@@ -30,7 +30,8 @@ jobs:
30
git-config-name: github-actions[bot]
31
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
32
- name: Deploy to subdirectory if pull request 🚀
33
- if: github.event_name == 'pull_request'
+ # This does not work for PRs from forks
34
+ if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'python-docs-translations/dashboard' }}
35
uses: JamesIves/github-pages-deploy-action@v4
36
with:
37
folder: build
0 commit comments