Skip to content

Cron - Sync BCNY forks #3

Cron - Sync BCNY forks

Cron - Sync BCNY forks #3

name: Cron - Sync BCNY forks
on:
# schedule:
# # Every day 8:00 am UTC
# - cron: '0 8 * * *'
workflow_dispatch:
jobs:
token:
outputs:

Check failure on line 12 in .github/workflows/cron-sync-bcny-forks.yml

View workflow run for this annotation

GitHub Actions / Cron - Sync BCNY forks

Invalid workflow file

The workflow is not valid. .github/workflows/cron-sync-bcny-forks.yml (Line: 12, Col: 5): Required property is missing: runs-on
token: ${{ steps.token.outputs.token }}
steps:
- uses: actions/create-github-app-token@v1
id: token
with:
app-id: ${{ secrets.FORK_SYNCER_APP_ID }}
private-key: ${{ secrets.FORK_SYNCER_PRIVATE_KEY }}
sync_analytics_swift:
needs: [token]
name: "Sync thebrowsercompany/analytics-swift"
runs-on: ubuntu-latest
steps:
- uses: thebrowsercompany/gha-sync-fork@bd704c61db9000e8bbc1affe3d4199b7e3eb291c
with:
fork_repo: thebrowsercompany/analytics-swift
fork_branch: develop
upstream_repo: segmentio/analytics-swift
upstream_branch: main
token: ${{ needs.token.outputs.token }}
sync_firebase_cpp_sdk:
needs: [token]
name: "Sync thebrowsercompany/firebase-cpp-sdk"
runs-on: ubuntu-latest
steps:
- uses: thebrowsercompany/gha-sync-fork@bd704c61db9000e8bbc1affe3d4199b7e3eb291c
with:
fork_repo: thebrowsercompany/firebase-cpp-sdk
fork_branch: compnerd/swift
upstream_repo: firebase/firebase-cpp-sdk
upstream_branch: main
token: ${{ needs.token.outputs.token }}
sync_swift_eventsource:
needs: [token]
name: "Sync thebrowsercompany/swift-eventsource"
runs-on: ubuntu-latest
steps:
- uses: thebrowsercompany/gha-sync-fork@bd704c61db9000e8bbc1affe3d4199b7e3eb291c
with:
fork_repo: thebrowsercompany/swift-eventsource
fork_branch: main-bcny
upstream_repo: launchdarkly/swift-eventsource
upstream_branch: main
token: ${{ needs.token.outputs.token }}