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 25e73f3 commit 2a5917eCopy full SHA for 2a5917e
1 file changed
.github/workflows/ci-website-e2e.yaml
@@ -67,7 +67,15 @@ jobs:
67
68
- name: Deploy report to Cloudflare
69
id: deploy
70
- if: always() && !cancelled()
+ if: >-
71
+ ${{
72
+ always() &&
73
+ !cancelled() &&
74
+ (
75
+ github.event_name != 'pull_request' ||
76
+ github.event.pull_request.head.repo.fork == false
77
+ )
78
+ }}
79
env:
80
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
81
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
0 commit comments