Skip to content

Commit

Permalink
adding actions to update other branches with changes in main
Browse files Browse the repository at this point in the history
  • Loading branch information
ashton committed May 16, 2024
1 parent d498114 commit c453103
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-branches.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit c453103

Please sign in to comment.