-
Notifications
You must be signed in to change notification settings - Fork 125
/
release-please-config.json
150 lines (150 loc) · 3.54 KB
/
release-please-config.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"separate-pull-requests": true,
"last-release-sha": "9bb78bb1c74aeb3524fb258d8c77d8493c42cd4f",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"pull-request-title-pattern": "chore: release${component} ${version}",
"signoff": "keptn-bot <86361500+keptn-bot@users.noreply.github.com>",
"packages": {
".": {
"package-name": "keptn",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"prerelease": false,
"monorepo-tags": "keptn",
"draft": false,
"exclude-paths": [
"keptn-cert-manager",
"lifecycle-operator",
"metrics-operator",
"runtimes",
".github/actions/spelling",
"test",
"examples"
],
"extra-files": [
"README.md",
"operator/config/manager/manager.yaml",
"chart/Chart.yaml",
"Makefile",
"chart/values.yaml",
"chart/README.md",
"docs/docs/getting-started/observability.md"
]
},
"keptn-cert-manager": {
"package-name": "cert-manager",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"monorepo-tags": "cert-manager",
"prerelease": false,
"draft": false,
"extra-files": [
"Makefile",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"lifecycle-operator": {
"package-name": "lifecycle-operator",
"component": "lifecycle-operator",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"monorepo-tags": "lifecycle-operator",
"prerelease": false,
"draft": false,
"extra-files": [
"Makefile",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"metrics-operator": {
"package-name": "metrics-operator",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"monorepo-tags": "metrics-operator",
"prerelease": false,
"draft": false,
"extra-files": [
"Makefile",
"converter/sli_converter.md",
"converter/slo_converter.md",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"runtimes/python-runtime": {
"package-name": "python-runtime",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"monorepo-tags": "python-runtime",
"prerelease": false,
"draft": false
},
"runtimes/deno-runtime": {
"package-name": "deno-runtime",
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"monorepo-tags": "deno-runtime",
"prerelease": false,
"draft": false
}
},
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Other"
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "build",
"hidden": true,
"section": "Build"
},
{
"type": "deps",
"section": "Dependency Updates"
},
{
"type": "ci",
"hidden": true,
"section": "CI"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "revert",
"hidden": true,
"section": "Reverts"
},
{
"type": "style",
"hidden": true,
"section": "Styling"
},
{
"type": "test",
"hidden": true,
"section": "Tests"
}
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}