Skip to content

Sync With Upstream

Sync With Upstream #1

Workflow file for this run

name: 'Sync With Upstream'
on:
schedule:
- cron: '0 0 * * *'
# scheduled at 00:00 daily
workflow_dispatch:
jobs:
sync_latest_from_upstream:
runs-on: ubuntu-latest
name: Sync latest commits from upstream repo
steps:
- name: Checkout target repo
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Sync upstream changes
id: sync
uses: aormsby/[email protected]
with:
target_sync_branch: master-broadcom
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_branch: master
upstream_sync_repo: sonic-net/sonic-swss