You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"message": "chore(release): set version to ${nextRelease.version}\n\n${nextRelease.notes}\n\nThis commit is a result of automation, thus CI shouldn't run ([skip ci]).",
142
-
"assets": [
143
-
"CHANGELOG.md",
144
-
"package.json"
157
+
['@semantic-release/git', {
158
+
message: 'chore(release): set version to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
159
+
assets: [
160
+
'CHANGELOG.md',
161
+
'package.json'
145
162
]
146
163
}],
147
-
["@semantic-release/exec", {
148
-
"publishCmd": "bash npm-tarball-to-zip.sh"
164
+
['@semantic-release/exec', {
165
+
publishCmd: 'bash npm-tarball-to-zip.sh'
149
166
}],
150
-
["@semantic-release/github", {
151
-
"assets": "*.zip"
167
+
['@semantic-release/github', {
168
+
assets: '*.zip',
169
+
labels: 'failed-release',
170
+
releasedLabels: 'released'
152
171
}]
153
-
]
154
-
}
172
+
],
173
+
commitGroupsSort: (a, b) => {
174
+
const order = [
175
+
'Features',
176
+
'Bug Fixes',
177
+
'Performance Improvements',
178
+
'Documentation',
179
+
'Tests',
180
+
'Code Refactoring',
181
+
'Styles',
182
+
'Build System',
183
+
'Continuous Integration'
184
+
]
185
+
if (order.indexOf(a.title) >= order.indexOf(b.title)) {
0 commit comments