mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
19 lines
399 B
YAML
19 lines
399 B
YAML
name: Merge master changes to develop
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
jobs:
|
|
sync-branch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Merge master -> develop
|
|
uses: devmasx/merge-branch@1.4.0
|
|
with:
|
|
type: now
|
|
from_branch: master
|
|
target_branch: develop
|
|
github_token: ${{ github.token }}
|