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 762659d commit 56a8026Copy full SHA for 56a8026
.github/workflows/bevy_mod_scripting.yml
@@ -83,7 +83,7 @@ jobs:
83
- name: Check if fork
84
id: check-fork
85
run: |
86
- if [ "${{ github.repository }}" != "${{ github.event.pull_request.head.repo.full_name }}" ]; then
+ if [ "${{ github.event_name }}" == "pull_request" && "${{ github.repository }}" != "${{ github.event.pull_request.head.repo.full_name }}" ]; then
87
echo "This is a forked repository."
88
echo "is_fork=true" >> $GITHUB_OUTPUT
89
else
0 commit comments