Skip to content

Commit

Permalink
Add workflow to sync forks
Browse files Browse the repository at this point in the history
  • Loading branch information
kendal committed May 22, 2024
1 parent 9e457a8 commit 9122ba3
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/cron-sync-bcny-forks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Cron - Sync BCNY forks

on:
schedule:
# Every day 8:00 am UTC
- cron: '0 8 * * *'

workflow_dispatch:

jobs:

sync_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

sync_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

sync_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

0 comments on commit 9122ba3

Please sign in to comment.