Skip to content

Update MagicMirror Server and Client mode documentation (#186) #10

Update MagicMirror Server and Client mode documentation (#186)

Update MagicMirror Server and Client mode documentation (#186) #10

name: Merge master into develop
on:
push:
branches:
- master
permissions:
contents: write
jobs:
merge-master-back-to-develop:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Merge master back to develop
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
git fetch --unshallow
git checkout develop
git status
git merge --no-ff --allow-unrelated-histories origin/master -m "Auto-merge master back to develop"
git push