mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 02:12:43 +08:00
chore(workflow): generate changelog via GitHub (#5800)
This commit is contained in:
parent
2266cbe262
commit
2543148507
10
.github/pr-labeler.yml
vendored
Normal file
10
.github/pr-labeler.yml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
"change: feat":
|
||||
- "/^(feat|types|style)/"
|
||||
"change: fix":
|
||||
- "/^fix/"
|
||||
"change: perf":
|
||||
- "/^perf/"
|
||||
"change: breaking":
|
||||
- "/^breaking change/"
|
||||
"change: docs":
|
||||
- "/^docs/"
|
20
.github/workflows/pr-label.yaml
vendored
Normal file
20
.github/workflows/pr-label.yaml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: PR Labeler
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- opened
|
||||
- edited
|
||||
|
||||
jobs:
|
||||
change-labeling:
|
||||
name: Labeling for changes
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: github/issue-labeler@v3.4
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
configuration-path: .github/pr-labeler.yml
|
||||
enable-versioned-regex: 0
|
||||
include-title: 1
|
||||
sync-labels: 1
|
11
.github/workflows/release-tag.yml
vendored
11
.github/workflows/release-tag.yml
vendored
@ -11,13 +11,12 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@master
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Create Release for Tag
|
||||
id: release_tag
|
||||
uses: yyx990803/release-tag@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
generateReleaseNotes: "true"
|
||||
body: |
|
||||
更新内容参见 [CHANGELOG](https://vant-ui.github.io/vant-weapp/#/changelog)。
|
||||
> 请访问 [更新日志](https://vant-ui.github.io/vant-weapp/#/changelog) 了解所有更新。
|
||||
|
@ -28,7 +28,4 @@ then
|
||||
else
|
||||
npm publish
|
||||
fi
|
||||
|
||||
# changelog
|
||||
vant-cli changelog
|
||||
fi
|
||||
|
@ -16,7 +16,6 @@
|
||||
"release": "sh build/release.sh",
|
||||
"release:site": "vant-cli build-site && gh-pages -d site-dist --add",
|
||||
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
|
||||
"build:changelog": "vant-cli changelog",
|
||||
"upload:weapp": "node build/upload.js",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch"
|
||||
|
Loading…
x
Reference in New Issue
Block a user