-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
28 lines (28 loc) · 1.05 KB
/
release-please-config.json
File metadata and controls
28 lines (28 loc) · 1.05 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
"packages/core": {
"package-name": "@shift-css/core",
"changelog-path": "CHANGELOG.md",
"release-type": "node"
},
"packages/cli": {
"package-name": "@shift-css/cli",
"changelog-path": "CHANGELOG.md",
"release-type": "node"
}
},
"separate-pull-requests": true,
"group-pull-request-title-pattern": "chore: release ${component}",
"pull-request-title-pattern": "chore: release${component} ${version}",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "chore", "section": "Maintenance", "hidden": true },
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "ci", "section": "CI/CD", "hidden": true }
]
}