
- 重命名 auto-merge.yml 中的任务名称并优化结构 - 新增 release-log.yml 工作流用于自动生成发布日志 - 删除旧的 release.yml 工作流文件 ``` 这个提交消息: 1. 使用了 `ci` 类型,因为这些变更都是针对 CI/CD 工作流配置的修改 2. 简洁地描述了三个主要变更: - 重构了 auto-merge 工作流 - 新增了发布日志功能 - 删除了旧的工作流文件 3. 符合中文语言习惯和提交消息规范 4. 在50字符限制内完成了描述 5. 使用动词开头并保持简洁
81 lines
2.2 KiB
YAML
81 lines
2.2 KiB
YAML
name: Auto Merge Base to Other Branches
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- base
|
|
workflow_dispatch: # 手动触发
|
|
|
|
jobs:
|
|
merge-to-main:
|
|
name: Merge base into main
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GH_TOKEN_AUTO_MERGE }}
|
|
|
|
- name: Merge base into main
|
|
run: |
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@github.com"
|
|
git checkout main
|
|
git merge base --no-ff -m "Auto merge base into main"
|
|
git push origin main
|
|
|
|
merge-to-i18n:
|
|
name: Merge base into i18n
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GH_TOKEN_AUTO_MERGE }}
|
|
|
|
- name: Merge base into i18n
|
|
run: |
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@github.com"
|
|
git checkout i18n
|
|
git merge base --no-ff -m "Auto merge base into i18n"
|
|
git push origin i18n
|
|
|
|
merge-to-tabbar:
|
|
name: Merge base into tabbar
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GH_TOKEN_AUTO_MERGE }}
|
|
|
|
- name: Merge base into tabbar
|
|
run: |
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@github.com"
|
|
git checkout tabbar
|
|
git merge base --no-ff -m "Auto merge base into tabbar"
|
|
git push origin tabbar
|
|
|
|
merge-to-spa:
|
|
name: Merge base into spa
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GH_TOKEN_AUTO_MERGE }}
|
|
|
|
- name: Merge base into spa
|
|
run: |
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@github.com"
|
|
git checkout spa
|
|
git merge base --no-ff -m "Auto merge base into spa"
|
|
git push origin spa
|