-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
34 lines (34 loc) · 1.34 KB
/
Copy pathrelease-please-config.json
File metadata and controls
34 lines (34 loc) · 1.34 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "simple",
"pull-request-title-pattern": "chore(release): ${version}",
"pull-request-header": "Automated release PR. Merging publishes a new tag and triggers the binary + Docker builds.",
"include-component-in-tag": false,
"include-v-in-tag": true,
"separate-pull-requests": false,
"draft": false,
"prerelease": false,
"packages": {
".": {
"package-name": "atty",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{ "type": "generic", "path": "build.zig.zon" },
{ "type": "generic", "path": "src/version.zig" }
]
}
},
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "refactor", "section": "Refactor" },
{ "type": "docs", "section": "Documentation" },
{ "type": "build", "section": "Build", "hidden": true },
{ "type": "ci", "section": "CI", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "style", "section": "Style", "hidden": true },
{ "type": "chore", "section": "Chores", "hidden": true },
{ "type": "revert", "section": "Reverts" }
]
}