release-please-config.json
1
{
2
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
"release-type": "simple",
4
"pull-request-title-pattern": "chore(release): ${version}",
5
"packages": {
6
".": {
7
"changelog-path": "CHANGELOG.md",
8
"release-type": "simple",
9
"bump-minor-pre-major": false,
10
"include-component-in-tag": false,
11
"include-v-in-tag": true,
12
"extra-files": [
13
{
14
"type": "generic",
15
"path": "distribution/helm/koment/Chart.yaml"
16
},
17
{
18
"type": "generic",
19
"path": "integrations/editors/zed/extension.toml"
20
},
21
{
22
"type": "generic",
23
"path": "integrations/agent-plugins/hermes/plugin.yaml"
24
},
25
{
26
"type": "json",
27
"path": "integrations/editors/vscode/package.json",
28
"jsonpath": "$.version"
29
},
30
{
31
"type": "json",
32
"path": "integrations/editors/vscode/package-lock.json",
33
"jsonpath": "$.version"
34
},
35
{
36
"type": "json",
37
"path": "integrations/editors/vscode/package-lock.json",
38
"jsonpath": "$['packages'][''].version"
39
},
40
{
41
"type": "json",
42
"path": "integrations/agent-plugins/claude/.claude-plugin/plugin.json",
43
"jsonpath": "$.version"
44
},
45
{
46
"type": "json",
47
"path": "integrations/agent-plugins/codex/plugins/koment/.codex-plugin/plugin.json",
48
"jsonpath": "$.version"
49
},
50
{
51
"type": "json",
52
"path": "integrations/agent-plugins/opencode/plugin.json",
53
"jsonpath": "$.version"
54
},
55
{
56
"type": "json",
57
"path": "integrations/agent-plugins/opencode/package.json",
58
"jsonpath": "$.version"
59
},
60
{
61
"type": "json",
62
"path": "server.json",
63
"jsonpath": "$.version"
64
}
65
]
66
}
67
},
68
"changelog-sections": [
69
{
70
"type": "feat",
71
"section": "Features"
72
},
73
{
74
"type": "fix",
75
"section": "Bug Fixes"
76
},
77
{
78
"type": "refactor",
79
"section": "Code Refactoring"
80
},
81
{
82
"type": "perf",
83
"section": "Performance"
84
},
85
{
86
"type": "docs",
87
"section": "Documentation"
88
},
89
{
90
"type": "test",
91
"section": "Tests"
92
},
93
{
94
"type": "build",
95
"section": "Build System"
96
},
97
{
98
"type": "ci",
99
"section": "Continuous Integration"
100
},
101
{
102
"type": "chore",
103
"section": "Miscellaneous",
104
"hidden": true
105
}
106
]
107
}