From 25d5e513cea7fcf0e88b4f2fb45d565d31c4fa02 Mon Sep 17 00:00:00 2001 From: Brad House Date: Thu, 21 Nov 2024 19:54:56 -0500 Subject: [PATCH] sync upstream workflow --- .github/workflows/sync_upstream.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/sync_upstream.yml 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