Skip to content

chore(actions): add sync #1

chore(actions): add sync

chore(actions): add sync #1

Workflow file for this run

name: Sync development onto master
on:
push:
branches:
- master
jobs:
sync:
runs-on: ubuntu-latest
name: Sync development branch with master
steps:
- name: Checkout Dev
uses: actions/checkout@v4
with:
ref: development
- name: Merge master -> development
uses: devmasx/merge-branch@master
with:
type: now
from_branch: master
target_branch: development
github_token: ${{ secrets.GITHUB_TOKEN }}