-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-please-config.json
35 lines (35 loc) · 1.13 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"pull-request-header": ":robot: I have created a release",
"pull-request-title-pattern": "chore: release v${version}",
"group-pull-request-title-pattern": "chore: release v${version}",
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "simple",
"skip-github-release": false,
"bump-minor-pre-major": true,
"include-v-in-tag": true,
"draft": false,
"draft-pull-request": true,
"prerelease": false,
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "*",
"section": "Changelog",
"hidden": false
}
]
}
}
}