Skip to content

Commit

Permalink
fix rebase command
Browse files Browse the repository at this point in the history
  • Loading branch information
ashton committed May 16, 2024
1 parent 4e1b23b commit 05bebb9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/update-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ jobs:
- uses: actions/checkout@v4
- run: git config user.name "github-actions[bot]"
- run: git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git rebase --onto osx main
- run: git rebase osx main
- run: git checkout osx
- run: git merge main
- run: git push
update-arch-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git config user.name "github-actions[bot]"
- run: git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git rebase --onto arch main
- run: git rebase arch main
- run: git checkout arch
- run: git merge main
- run: git push

0 comments on commit 05bebb9

Please sign in to comment.