Adding auto branch merge

This commit is contained in:
Tom
2021-06-06 14:15:34 -04:00
parent 4fb58719d3
commit 962a709489

15
.github/workflows/merge-branch.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
on:
push:
branches:
- "dev"
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: everlytic/branch-merge@1.1.0
with:
github_token: ${{ github.token }}
source_ref: 'dev'
target_branch: 'gh-pages'
commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'