1---
2name-template: "v$RESOLVED_VERSION"
3tag-template: "v$RESOLVED_VERSION"
4template: |
5 # Changelog
6 $CHANGES
7
8 See details of [all code changes](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release
9
10categories:
11 - title: "🚀 Features"
12 labels:
13 - "feature"
14 - "enhancement"
15 - title: "🐛 Bug Fixes"
16 labels:
17 - "fix"
18 - "bugfix"
19 - "bug"
20 - title: "🧰 Maintenance"
21 labels:
22 - "infrastructure"
23 - "automation"
24 - "documentation"
25 - "dependencies"
26 - "maintenance"
27 - "revert"
28 - title: "🏎 Performance"
29 label: "performance"
30change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
31version-resolver:
32 major:
33 labels:
34 - "breaking"
35 - "major"
36 minor:
37 labels:
38 - "feature"
39 - "enhancement"
40 - "minor"
41 patch:
42 labels:
43 - "fix"
44 - "documentation"
45 - "maintenance"
46 - "patch"
47 default: patch
48autolabeler:
49 - label: "automation"
50 title:
51 - "/^(build|ci|perf|refactor|test).*/i"
52 - label: "enhancement"
53 title:
54 - "/^(style).*/i"
55 - label: "documentation"
56 title:
57 - "/^(docs).*/i"
58 - label: "feature"
59 title:
60 - "/^(feat).*/i"
61 - label: "fix"
62 title:
63 - "/^(fix).*/i"
64 - label: "infrastructure"
65 title:
66 - "/^(infrastructure).*/i"
67 - label: "maintenance"
68 title:
69 - "/^(chore|maintenance).*/i"
70 - label: "revert"
71 title:
72 - "/^(revert).*/i"