ci: refine release-please configuration for monorepo
[e-mobility-charging-stations-simulator.git] / .github / release-please / config.json
1 {
2 "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3 "plugins": ["node-workspace"],
4 "bump-minor-pre-major": true,
5 "bump-patch-for-minor-pre-major": true,
6 "include-component-in-tag": false,
7 "packages": {
8 ".": {
9 "release-type": "node",
10 "component": "simulator",
11 "extra-files": ["sonar-project.properties"]
12 },
13 "ui/web": {
14 "release-type": "node",
15 "component": "ui",
16 "extra-files": ["sonar-project.properties"]
17 },
18 "tests/ocpp-server": {
19 "release-type": "python",
20 "component": "ocpp-server"
21 }
22 },
23 "changelog-sections": [
24 { "type": "feat", "section": "๐Ÿš€ Features", "hidden": false },
25 { "type": "fix", "section": "๐Ÿž Fixes", "hidden": false },
26 { "type": "docs", "section": "๐Ÿ“š Documentation", "hidden": false },
27
28 { "type": "perf", "section": "โœจ Polish", "hidden": false },
29 { "type": "refactor", "section": "โœจ Polish", "hidden": false },
30
31 { "type": "chore", "section": "๐Ÿงน Chores", "hidden": true },
32 { "type": "test", "section": "๐Ÿงน Chores", "hidden": false },
33
34 { "type": "build", "section": "๐Ÿค– Automation", "hidden": false },
35 { "type": "ci", "section": "๐Ÿค– Automation", "hidden": true }
36 ]
37 }