Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(ci): Run cron jobs on workflow dispatch
  • Loading branch information
ncooke3 committed Sep 11, 2025
commit 3ed52ccb5697067ca268784de3a478c47b831e4e
6 changes: 3 additions & 3 deletions .github/workflows/common_cocoapods_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ on:

jobs:
cron-job:
# This job is intended to be run on a schedule, on the main repo.
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'

if: |
github.repository == 'firebase/firebase-ios-sdk' && \
(github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
runs-on: ${{ inputs.runs_on }}
strategy:
matrix:
Expand Down
Loading