Skip to content

adding actions to update other branches with changes in main #1

adding actions to update other branches with changes in main

adding actions to update other branches with changes in main #1

name: update-os-branches
on: [push]
jobs:
update-osx-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git rebase --onto osx main
git push
update-arch-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git rebase --onto arch main
git push