chore(CI): automatically generate changelog via GitHub (#12135)

This commit is contained in:
neverland 2023-07-30 12:55:24 +08:00 committed by GitHub
parent b6d35cd268
commit 677185020e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 10 deletions

8
.github/pr-labeler.yml vendored Normal file
View File

@ -0,0 +1,8 @@
"change: feat":
- "/^(feat|perf|types|style)/"
"change: fix":
- "/^fix/"
"change: breaking":
- "/^breaking change/"
"change: docs":
- "/^docs/"

23
.github/release.yml vendored Normal file
View File

@ -0,0 +1,23 @@
# .github/release.yml
changelog:
exclude:
authors:
# Ignore the release PR created by github-actions
- github-actions
categories:
- title: Breaking Changes 🍭
labels:
- "change: breaking"
- title: New Features 🎉
labels:
- "change: feat"
- title: Bug Fixes 🐞
labels:
- "change: fix"
- title: Document 📖
labels:
- "change: docs"
- title: Other Changes
labels:
- "*"

View File

@ -11,15 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
uses: actions/checkout@v3
- name: Create Release for Tag
id: release_tag
uses: yyx990803/release-tag@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
body: |
更新内容参见 [CHANGELOG](https://vant-ui.github.io/vant/#/zh-CN/changelog)。
Please refer to [CHANGELOG](https://vant-ui.github.io/vant/#/en-US/changelog) for details.
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
body: |
Please refer to [CHANGELOG](https://vant-ui.github.io/vant/#/en-US/changelog) for all changelogs.
请参阅 [CHANGELOG](https://vant-ui.github.io/vant/#/zh-CN/changelog) 了解所有更新日志。