1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| module.exports = { skip: { tag: false, }, types: [ { type: "feat", section: "新特性" }, { type: "fix", section: "Bug修复" }, { type: "docs", section: "文档" }, { type: "chore", section: "配置项" }, { type: "style", section: "格式" }, { type: "refactor", section: "重构" }, { type: "perf", section: "代码优化" }, { type: "test", section: "测试", hidden: true }, { type: "revert", section: "回滚", hidden: true }, ], commitUrlFormat: "http://git.genecast.com.cn/{{owner}}/{{repository}}/commit/{{hash}}", };
|