mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +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
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Create Release for Tag
|
- name: Create Release for Tag
|
||||||
id: release_tag
|
id: release_tag
|
||||||
uses: yyx990803/release-tag@master
|
uses: ncipollo/release-action@v1
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref }}
|
generateReleaseNotes: "true"
|
||||||
body: |
|
body: |
|
||||||
更新内容参见 [CHANGELOG](https://vant-ui.github.io/vant-weapp/#/changelog)。
|
> 请访问 [更新日志](https://vant-ui.github.io/vant-weapp/#/changelog) 了解所有更新。
|
||||||
|
@ -28,7 +28,4 @@ then
|
|||||||
else
|
else
|
||||||
npm publish
|
npm publish
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# changelog
|
|
||||||
vant-cli changelog
|
|
||||||
fi
|
fi
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
"release": "sh build/release.sh",
|
"release": "sh build/release.sh",
|
||||||
"release:site": "vant-cli build-site && gh-pages -d site-dist --add",
|
"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:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
|
||||||
"build:changelog": "vant-cli changelog",
|
|
||||||
"upload:weapp": "node build/upload.js",
|
"upload:weapp": "node build/upload.js",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"test:watch": "jest --watch"
|
"test:watch": "jest --watch"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user