Create merge-to-dev.yml
This commit is contained in:
committed by
GitHub
parent
bae04005d3
commit
6d1da27b3c
17
.github/workflows/merge-to-dev.yml
vendored
Normal file
17
.github/workflows/merge-to-dev.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
name: Merge master branch to dev
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
jobs:
|
||||||
|
merge-branch:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Merge to dev branch
|
||||||
|
uses: devmasx/merge-branch@v1.1.0
|
||||||
|
with:
|
||||||
|
type: now
|
||||||
|
target_branch: 'dev'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||||
Reference in New Issue
Block a user