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: "💥 Breaking Changes"
12 labels:
13 - "breaking"
14 - title: "🚀 Features"
15 labels:
16 - "feature"
17 - "enhancement"
18 - title: "🐛 Bug Fixes"
19 labels:
20 - "fix"
21 - "bugfix"
22 - "bug"
23 - title: "🧰 Maintenance"
24 labels:
25 - "infrastructure"
26 - "automation"
27 - "documentation"
28 - "dependencies"
29 - "maintenance"
30 - "revert"
31 - title: "🏎 Performance"
32 labels:
33 - "performance"
34change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
35version-resolver:
36 major:
37 labels:
38 - "breaking"
39 - "major"
40 minor:
41 labels:
42 - "feature"
43 - "enhancement"
44 - "minor"
45 patch:
46 labels:
47 - "fix"
48 - "documentation"
49 - "maintenance"
50 - "patch"
51 default: patch
52autolabeler:
53 - label: "automation"
54 title:
55 - "/^(build|ci|perf|refactor|test).*/i"
56 - label: "enhancement"
57 title:
58 - "/^(style).*/i"
59 - label: "documentation"
60 title:
61 - "/^(docs).*/i"
62 - label: "feature"
63 title:
64 - "/^(feat).*/i"
65 - label: "fix"
66 title:
67 - "/^(fix).*/i"
68 - label: "infrastructure"
69 title:
70 - "/^(infrastructure).*/i"
71 - label: "maintenance"
72 title:
73 - "/^(chore|maintenance).*/i"
74 - label: "revert"
75 title:
76 - "/^(revert).*/i"