md/.github/workflows/branch-merge.yml

18 lines
413 B
YAML
Raw Normal View History

2020-09-13 11:26:24 +08:00
name: Merge Branch
on:
push:
branches: [ imgbot ]
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: ${{ github.ref }}
2020-11-24 23:55:18 +08:00
target_branch: main
2020-09-13 11:26:24 +08:00
commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'