Skip to content

Commit 690a1af

Browse files
committed
Fix workflow
1 parent 8b6f7a5 commit 690a1af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/combine.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ concurrency:
4848
jobs:
4949
xcodebuild:
5050
# Don't run on private repo unless it is a PR.
51-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
51+
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || contains(fromJSON('["pull_request", "workflow_dispatch"]'), github.event_name)
5252
runs-on: macos-15
5353

5454
strategy:
@@ -74,7 +74,7 @@ jobs:
7474

7575
storage-combine-integration:
7676
# Don't run on private repo unless it is a PR.
77-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
77+
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || contains(fromJSON('["pull_request", "workflow_dispatch"]'), github.event_name)
7878
env:
7979
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
8080
runs-on: macos-15

0 commit comments

Comments
 (0)