|
1 | 1 | name-template: 'v$RESOLVED_VERSION' |
2 | 2 | tag-template: 'v$RESOLVED_VERSION' |
| 3 | +tag-prefix: 'v' |
| 4 | +version-template: '$MAJOR.$MINOR.$PATCH' |
| 5 | + |
| 6 | +sort-by: merged_at |
| 7 | +sort-direction: descending |
| 8 | +pull-request-limit: 100 |
| 9 | +history-limit: 100 |
| 10 | + |
| 11 | +no-changes-template: '- No changes.' |
| 12 | +no-contributors-template: 'No contributors.' |
| 13 | +category-template: '## $TITLE' |
| 14 | +change-template: '- [$TITLE]($URL) by @$AUTHOR' |
| 15 | +change-title-escapes: '\<*_&`#@' |
| 16 | + |
| 17 | +exclude-contributors: |
| 18 | + - github-actions |
| 19 | + - github-actions[bot] |
| 20 | + - dependabot |
| 21 | + - dependabot[bot] |
3 | 22 |
|
4 | 23 | categories: |
| 24 | + - type: pre-exclude |
| 25 | + when: |
| 26 | + labels: |
| 27 | + - skip-changelog |
| 28 | + - State One |
| 29 | + - State Two |
| 30 | + |
5 | 31 | - title: 'Breaking Changes' |
6 | | - labels: |
7 | | - - breaking-change |
8 | | - - title: 'Features' |
9 | | - labels: |
10 | | - - enhancement |
11 | | - - title: 'Architecture' |
12 | | - labels: |
13 | | - - Architecture |
14 | | - - title: 'Rendering' |
15 | | - labels: |
16 | | - - Renderer |
17 | | - - Gpu |
18 | | - - Layout |
| 32 | + semver-increment: major |
| 33 | + collapse-after: -1 |
| 34 | + exclusive: true |
| 35 | + when: |
| 36 | + label: breaking-change |
| 37 | + |
| 38 | + - title: 'Enhancements' |
| 39 | + semver-increment: minor |
| 40 | + collapse-after: 10 |
| 41 | + exclusive: true |
| 42 | + when: |
| 43 | + label: enhancement |
| 44 | + |
| 45 | + - title: 'Fixes' |
| 46 | + semver-increment: patch |
| 47 | + collapse-after: 10 |
| 48 | + exclusive: true |
| 49 | + when: |
| 50 | + label: bug |
| 51 | + |
19 | 52 | - title: 'Performance' |
20 | | - labels: |
21 | | - - Performance |
22 | | - - title: 'Bug Fixes' |
23 | | - labels: |
24 | | - - bug |
| 53 | + semver-increment: patch |
| 54 | + collapse-after: 8 |
| 55 | + exclusive: true |
| 56 | + when: |
| 57 | + label: Performance |
| 58 | + |
| 59 | + - title: 'Architecture' |
| 60 | + semver-increment: patch |
| 61 | + collapse-after: 8 |
| 62 | + exclusive: true |
| 63 | + when: |
| 64 | + label: Architecture |
| 65 | + |
| 66 | + - title: 'Renderer' |
| 67 | + semver-increment: patch |
| 68 | + collapse-after: 8 |
| 69 | + exclusive: true |
| 70 | + when: |
| 71 | + label: Renderer |
| 72 | + |
| 73 | + - title: 'Gpu' |
| 74 | + semver-increment: patch |
| 75 | + collapse-after: 8 |
| 76 | + exclusive: true |
| 77 | + when: |
| 78 | + label: Gpu |
| 79 | + |
| 80 | + - title: 'Layout' |
| 81 | + semver-increment: patch |
| 82 | + collapse-after: 8 |
| 83 | + exclusive: true |
| 84 | + when: |
| 85 | + label: Layout |
| 86 | + |
25 | 87 | - title: 'Tests' |
26 | | - labels: |
27 | | - - tests |
| 88 | + semver-increment: patch |
| 89 | + collapse-after: 8 |
| 90 | + exclusive: true |
| 91 | + when: |
| 92 | + label: tests |
| 93 | + |
28 | 94 | - title: 'Documentation' |
29 | | - labels: |
30 | | - - documentation |
| 95 | + semver-increment: patch |
| 96 | + collapse-after: 8 |
| 97 | + exclusive: true |
| 98 | + when: |
| 99 | + label: documentation |
| 100 | + |
31 | 101 | - title: 'CI' |
32 | | - labels: |
33 | | - - ci |
| 102 | + semver-increment: patch |
| 103 | + collapse-after: 8 |
| 104 | + exclusive: true |
| 105 | + when: |
| 106 | + label: ci |
| 107 | + |
34 | 108 | - title: 'Tasks' |
35 | | - labels: |
36 | | - - task |
37 | | - |
38 | | -change-title-escapes: '\<*_&' |
39 | | - |
40 | | -version-resolver: |
41 | | - major: |
42 | | - labels: |
43 | | - - breaking-change |
44 | | - minor: |
45 | | - labels: |
46 | | - - enhancement |
47 | | - - Architecture |
48 | | - - Renderer |
49 | | - - Gpu |
50 | | - - Layout |
51 | | - - Performance |
52 | | - patch: |
53 | | - labels: |
54 | | - - bug |
55 | | - - ci |
56 | | - - tests |
57 | | - default: patch |
| 109 | + semver-increment: patch |
| 110 | + collapse-after: 8 |
| 111 | + exclusive: true |
| 112 | + when: |
| 113 | + label: task |
58 | 114 |
|
59 | | -template: | |
60 | | - ## Changes |
| 115 | + - title: 'Other Changes' |
| 116 | + semver-increment: patch |
| 117 | + collapse-after: 8 |
| 118 | + |
| 119 | + - type: version-resolver |
| 120 | + semver-increment: major |
| 121 | + when: |
| 122 | + label: breaking-change |
| 123 | + |
| 124 | + - type: version-resolver |
| 125 | + semver-increment: minor |
| 126 | + when: |
| 127 | + label: enhancement |
61 | 128 |
|
| 129 | + - type: version-resolver |
| 130 | + semver-increment: patch |
| 131 | + |
| 132 | +template: | |
62 | 133 | $CHANGES |
| 134 | +
|
| 135 | +footer: | |
| 136 | + ## Contributors |
| 137 | +
|
| 138 | + $CONTRIBUTORS |
| 139 | +
|
| 140 | + ## Links |
| 141 | +
|
| 142 | + - Full changelog: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION |
0 commit comments