Skip to content

Commit

Permalink
spliting actions in step
Browse files Browse the repository at this point in the history
  • Loading branch information
ashton committed May 16, 2024
1 parent c453103 commit 4e1b23b
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/update-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,15 @@ jobs:
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
- 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 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
- 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 push

0 comments on commit 4e1b23b

Please sign in to comment.