mirror of
https://github.com/doocs/advanced-java.git
synced 2025-01-13 05:20:09 +08:00
a1dbe5a934
添加 Gitee Pages Action: https://github.com/yanglbme/gitee-pages-action
19 lines
464 B
YAML
19 lines
464 B
YAML
name: Merge Branch
|
|
|
|
on:
|
|
push:
|
|
branches: [ imgbot ]
|
|
|
|
jobs:
|
|
merge-branch:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'doocs/advanced-java'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: everlytic/branch-merge@1.1.0
|
|
with:
|
|
github_token: ${{ github.token }}
|
|
source_ref: ${{ github.ref }}
|
|
target_branch: main
|
|
commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'
|