Skip to content

Commit 572fd3e

Browse files
committed
feat: add branch-merge action
1 parent c5ea4eb commit 572fd3e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/branch-merge.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Merge Branch
2+
3+
on:
4+
push:
5+
branches: [ imgbot ]
6+
7+
jobs:
8+
merge-branch:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: everlytic/[email protected]
13+
with:
14+
github_token: ${{ github.token }}
15+
source_ref: ${{ github.ref }}
16+
target_branch: 'master'
17+
commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'

0 commit comments

Comments
 (0)