forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.autorc.yml
63 lines (51 loc) · 1.55 KB
/
.autorc.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
noVersionPrefix: true
plugins:
- npm
- released
- first-time-contributor
- all-contributors
- ./scripts/auto-before-commit-changelog-plugin.js
labels:
- name: breaking
changelogTitle: 💥 Breaking Change
description: Increment the major version when merged
releaseType: major
- name: feature
changelogTitle: 💥 Feature
description: A new feature addtion
releaseType: minor
- name: enhancement
changelogTitle: 🚀 Enhancement
description: Increment the minor version when merged
releaseType: minor
- name: bug
changelogTitle: 🐛 Bug Fix
description: Fixing a minor bug
releaseType: minor
- name: patch
changelogTitle: 🤷 Misc
description: Increment the patch version when merged
releaseType: patch
- name: security
changelogTitle: 🏿♀️ Security
description: Changes improve the code security
releaseType: patch
- name: technical debt
changelogTitle: 👷🏼♀️ Technical Debt
description: Changes only affect the internal code, improving performance/quaility
releaseType: patch
- name: dependencies
changelogTitle: 🔩 Dependencies
description: Dependencies Updates
releaseType: none
- name: test
changelogTitle: 🔩 Tests
description: Test Updates
releaseType: none
- name: documentation
changelogTitle: 📝 Documentation
description: Changes only affect the documentation
releaseType: none
- name: skip-release
description: Preserve the current version when merged
releaseType: skip