Skip to content

Merge pull request #793 from xBounceIT/1.5 #28

Merge pull request #793 from xBounceIT/1.5

Merge pull request #793 from xBounceIT/1.5 #28

Workflow file for this run

name: Synchronize back to master
on:
push:
branches:
- 1.5
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- uses: actions/checkout@v2
with:
ref: 1.5
- run: |
git fetch --unshallow
git pull origin 1.5
git config user.email "[email protected]"
git config user.name "GitHub Actions"
- name: sync master
run: |
git checkout master
git pull --rebase
git merge 1.5 --ff-only
git push