ci: refine release-please configuration
[poolifier.git] / .github / release-please / config.json
1 {
2 "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3 "release-type": "node",
4 "bump-minor-pre-major": true,
5 "bump-patch-for-minor-pre-major": true,
6 "include-component-in-tag": false,
7 "include-v-in-tag": true,
8 "packages": {
9 ".": {
10 "extra-files": [
11 {
12 "type": "json",
13 "path": "jsr.json",
14 "jsonpath": "$.version"
15 },
16 "sonar-project.properties",
17 "src/pools/version.ts"
18 ]
19 }
20 },
21 "changelog-sections": [
22 { "type": "feat", "section": "๐Ÿš€ Features", "hidden": false },
23 { "type": "fix", "section": "๐Ÿž Bug Fixes", "hidden": false },
24 { "type": "docs", "section": "๐Ÿ“š Documentation", "hidden": false },
25 { "type": "test", "section": "๐Ÿงช Tests", "hidden": false },
26 { "type": "perf", "section": "โšก Performance", "hidden": false },
27 { "type": "refactor", "section": "โœจ Polish", "hidden": false },
28 { "type": "chore", "section": "๐Ÿงน Chores", "hidden": true },
29
30 { "type": "build", "section": "๐Ÿค– Automation", "hidden": false },
31 { "type": "ci", "section": "๐Ÿค– Automation", "hidden": true }
32 ]
33 }