Skip to content

Commit 9892625

Browse files
authored
fix: Don't run QS jobs on forks
1 parent 8dd8e89 commit 9892625

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/common_quickstart.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ on:
6262
jobs:
6363
quickstart:
6464
name: quickstart (${{ inputs.product }})
65-
# Run on the main repo's scheduled jobs or pull requests and manual workflow invocations.
66-
if: (github.repository == 'firebase/firebase-ios-sdk' && github.event_name == 'schedule') || contains(fromJSON('["pull_request", "workflow_dispatch"]'), github.event_name)
65+
if: |
66+
github.repository == 'firebase/firebase-ios-sdk' &&
67+
contains(fromJSON('["schedule", "pull_request", "workflow_dispatch"]'), github.event_name)
6768
env:
6869
plist_secret: ${{ secrets.plist_secret }}
6970
QUICKSTART_BRANCH: ${{ inputs.quickstart_branch }}

0 commit comments

Comments
 (0)