diff --git a/.github/workflows/sync_upstream.yml b/.github/workflows/sync_upstream.yml new file mode 100644 index 0000000000..b07ec50327 --- /dev/null +++ b/.github/workflows/sync_upstream.yml @@ -0,0 +1,21 @@ +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: + - uses: tgymnich/fork-sync@v2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + base: 202405-broadcom + head: 202405 + merge_method: rebase