Skip to content

Wrapper and troubleshooting update #28

Wrapper and troubleshooting update

Wrapper and troubleshooting update #28

Workflow file for this run

name: Auto-update dev branch
on:
pull_request:
branches: [main]
types: [closed]
jobs:
update-branchs:
if: github.event.pull_request.merged == true
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
git fetch --unshallow
- name: Merge main back to dev
continue-on-error: true
run: |
git checkout dev
git pull
git merge main --ff -m "Auto-update dev from main" && git push || (echo "Unable to automatically merge dev" && git merge --abort; exit 1)
- name: Merge main back to dev-wrapper
continue-on-error: true
run: |
git checkout dev-wrapper
git pull
git merge main --ff -m "Auto-update dev-wrapper from main" && git push || (echo "Unable to automatically merge dev-wrapper" && git merge --abort; exit 1)
- name: Merge main back to dev-images
continue-on-error: true
run: |
git checkout dev-images
git pull
git merge main --ff -m "Auto-update dev-images from main" && git push || (echo "Unable to automatically merge dev-images" && git merge --abort; exit 1)