Sync With Upstream #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Sync With Upstream' | |
on: | |
schedule: | |
- cron: '30 0 * * *' | |
tags-ignore: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
sync_latest_from_upstream: | |
runs-on: ubuntu-latest | |
name: Sync latest commits from upstream repo | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
steps: | |
- uses: tgymnich/fork-sync@v2.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
base: 202405-broadcom | |
head: 202405 | |
merge_method: rebase | |
# Now we need to update the hashes used for sonic-swss and sonic-sairedis | |
- name: Checkout sonic-build | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 0 | |
- name: Update hashes | |
run: | | |
git config --global user.name '[github actions]' | |
git config --global user.email 'bradh352@users.noreply.github.com' | |
git pull | |
cd src/sonic-swss | |
git checkout 202405-broadcom | |
git pull | |
cd ../sonic-sairedis | |
git checkout 202405-broadcom | |
git pull | |
cd ../.. | |
git add . | |
if git status | grep "nothing to commit" > /dev/null ; then | |
echo "nothing to commit" | |
else | |
git commit -am "update sonic-swss and sonic-sairedis branches" | |
git push | |
fi |