-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrelease-config.ts
More file actions
44 lines (44 loc) · 1.08 KB
/
release-config.ts
File metadata and controls
44 lines (44 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export default {
changeTypes: [
{
title: '💥 Breaking changes',
labels: ['Docs:Breaking-Change'],
bump: 'major',
weight: 4,
},
{
title: ':octocat: Developer Documentation',
labels: ['Docs:Developer'],
bump: 'minor',
weight: 3,
},
{
title: '🐾 Guides',
labels: ['Docs:Guides'],
bump: 'minor',
weight: 2,
},
{
title: '👷 Admin Documentation',
labels: ['Docs:Admin'],
bump: 'minor',
weight: 1,
},
{
title: '👤 User Documentation',
labels: ['Docs:User'],
bump: 'minor',
},
{
title: '🐛 Bug Fixes',
labels: ['Type:Bug'],
bump: 'patch',
},
{
title: '📦️ Build&Tools',
labels: ['dependency', 'dependencies', 'Docs:Build&Tools'],
bump: 'patch',
weight: -1,
},
],
};