Skip to content

Commit

Permalink
feat: add branch-merge action
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme committed Sep 13, 2020
1 parent 174b672 commit f7117a4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/branch-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Merge Branch

on:
push:
branches: [ imgbot ]

jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: everlytic/[email protected]
with:
github_token: ${{ github.token }}
source_ref: ${{ github.ref }}
target_branch: 'master'
commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'

0 comments on commit f7117a4

Please sign in to comment.