ci: 添加自动发布工作流和发布配置
添加 `.github/release.yml` 和 `.github/workflows/release.yml` 文件,用于配置和自动化发布流程。发布工作流会在推送标签时触发,生成更新日志并创建 GitHub 发布。
This commit is contained in:
31
.github/release.yml
vendored
Normal file
31
.github/release.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
categories:
|
||||
- title: '🚀 新功能'
|
||||
labels: ['feat', 'feature']
|
||||
- title: '🛠️ 修复'
|
||||
labels: ['fix', 'bugfix']
|
||||
- title: '💅 样式'
|
||||
labels: ['style']
|
||||
- title: '📄 文档'
|
||||
labels: ['docs']
|
||||
- title: '⚡️ 性能'
|
||||
labels: ['perf']
|
||||
- title: '🧪 测试'
|
||||
labels: ['test']
|
||||
- title: '♻️ 重构'
|
||||
labels: ['refactor']
|
||||
- title: '📦 构建'
|
||||
labels: ['build']
|
||||
- title: '🚨 补丁'
|
||||
labels: ['patch', 'hotfix']
|
||||
- title: '🌐 发布'
|
||||
labels: ['release', 'publish']
|
||||
- title: '🔧 流程'
|
||||
labels: ['ci', 'cd', 'workflow']
|
||||
- title: '⚙️ 配置'
|
||||
labels: ['config', 'chore']
|
||||
- title: '📁 文件'
|
||||
labels: ['file']
|
||||
- title: '🎨 格式化'
|
||||
labels: ['format']
|
||||
- title: '🔀 其他'
|
||||
labels: ['other', 'misc']
|
||||
Reference in New Issue
Block a user