-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.release-it.json
More file actions
47 lines (47 loc) · 1.43 KB
/
.release-it.json
File metadata and controls
47 lines (47 loc) · 1.43 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
45
46
47
{
"$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"tagAnnotation": "Release v${version}",
"requireCleanWorkingDir": true,
"requireBranch": "main",
"push": true,
"pushArgs": ["--follow-tags"]
},
"github": {
"release": true,
"releaseName": "v${version}",
"draft": false,
"preRelease": false
},
"npm": {
"publish": false
},
"plugins": {
"release-it-calver-plugin": {
"format": "yy.mm.minor",
"increment": "calendar"
},
"@release-it/conventional-changelog": {
"ignoreRecommendedBump": true,
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "refactor", "section": "Refactoring" },
{ "type": "docs", "section": "Documentation" },
{ "type": "chore", "section": "Maintenance" },
{ "type": "build", "section": "Build" },
{ "type": "ci", "section": "CI/CD" },
{ "type": "test", "section": "Tests" },
{ "type": "style", "section": "Styling" }
]
},
"infile": "CHANGELOG.md",
"header": "# Changelog\n\nAll notable changes to BeeCompose will be documented in this file.\n"
}
}
}