We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c33330b commit 05c7f87Copy full SHA for 05c7f87
.github/workflows/pr-preview.yml
@@ -5,6 +5,7 @@ on:
5
6
jobs:
7
preview:
8
+ if: github.event.pull_request.head.repo.full_name == github.repository
9
runs-on: ubuntu-latest
10
permissions:
11
id-token: write
.github/workflows/version-check.yml
@@ -42,7 +42,7 @@ jobs:
42
43
- name: Manage PR Comment
44
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
45
- if: always()
+ if: always() && github.event.pull_request.head.repo.full_name == github.repository
46
env:
47
MAIN_VERSION: ${{ env.MAIN_VERSION }}
48
PR_VERSION: ${{ env.PR_VERSION }}
0 commit comments