chore(workflow): add perf label for PR (#12473)

This commit is contained in:
neverland 2023-11-26 22:33:48 +08:00 committed by GitHub
parent 62779129b4
commit 9d219a535f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

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

3
.github/release.yml vendored
View File

@ -12,6 +12,9 @@ changelog:
- title: New Features 🎉 - title: New Features 🎉
labels: labels:
- "change: feat" - "change: feat"
- title: Performance 🚀
labels:
- "change: perf"
- title: Bug Fixes 🐞 - title: Bug Fixes 🐞
labels: labels:
- "change: fix" - "change: fix"