Skip to content

Commit a74e021

Browse files
authored
feat(ci): Run cron jobs on workflow dispatch (#15316)
1 parent d40913e commit a74e021

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/common_cocoapods_cron.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ on:
4848

4949
jobs:
5050
cron-job:
51-
# This job is intended to be run on a schedule, on the main repo.
52-
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
53-
51+
if: |
52+
github.repository == 'firebase/firebase-ios-sdk' && \
53+
(github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
5454
runs-on: ${{ inputs.runs_on }}
5555
strategy:
5656
matrix:

0 commit comments

Comments
 (0)