Skip to content

[doom] updating configs #10

[doom] updating configs

[doom] updating configs #10

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]"
- run: git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git fetch --all
- 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 fetch --all
- run: git checkout arch
- run: git merge main
- run: git push