-
Notifications
You must be signed in to change notification settings - Fork 553
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
43 lines (43 loc) · 1.48 KB
/
release-please-config.json
File metadata and controls
43 lines (43 loc) · 1.48 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"changelog-sections": [
{ "type": "feat", "section": "Features 🌟" },
{ "type": "fix", "section": "Bug Fixes 🐛" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{ "type": "refactor", "section": "Refactoring", "hidden": true },
{ "type": "perf", "section": "Performance", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build", "hidden": true },
{ "type": "ci", "section": "CI", "hidden": true },
{ "type": "chore", "section": "Chores", "hidden": true },
{ "type": "proposal", "section": "Proposals", "hidden": true },
{ "type": "revert", "section": "Reverts", "hidden": true }
],
"always-update": true,
"draft": true,
"force-tag-creation": true,
"draft-pull-request": true,
"pull-request-title-pattern": "chore${scope}: Release${component} ${version}",
"packages": {
".": {
"release-type": "go",
"versioning": "minor-breaking",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "generic",
"path": "docs/sources/_index.md"
},
{
"type": "generic",
"path": "collector/builder-config.yaml"
},
{
"type": "generic",
"path": "collector/VERSION"
}
]
}
}
}