/ release-please-config.json
release-please-config.json
1 { 2 "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", 3 "release-type": "python", 4 "include-component-in-tag": false, 5 "include-v-in-tag": false, 6 "separate-pull-requests": false, 7 "bump-minor-pre-major": true, 8 "bump-patch-for-minor-pre-major": true, 9 "extra-label": "skip_jira_status_check", 10 "changelog-sections": [ 11 { 12 "type": "feat", 13 "section": "Features" 14 }, 15 { 16 "type": "fix", 17 "section": "Bug Fixes" 18 }, 19 { 20 "type": "perf", 21 "section": "Performance Improvements" 22 }, 23 { 24 "type": "deps", 25 "section": "Dependencies" 26 }, 27 { 28 "type": "revert", 29 "section": "Reverts" 30 }, 31 { 32 "type": "docs", 33 "section": "Documentation" 34 }, 35 { 36 "type": "style", 37 "section": "Styles", 38 "hidden": true 39 }, 40 { 41 "type": "chore", 42 "section": "Miscellaneous Chores", 43 "hidden": true 44 }, 45 { 46 "type": "refactor", 47 "section": "Code Refactoring", 48 "hidden": true 49 }, 50 { 51 "type": "test", 52 "section": "Tests", 53 "hidden": true 54 }, 55 { 56 "type": "build", 57 "section": "Build System", 58 "hidden": true 59 }, 60 { 61 "type": "ci", 62 "section": "Continuous Integration", 63 "hidden": true 64 } 65 ], 66 "group-pull-request-title-pattern": "chore: release ${version}", 67 "pull-request-header": ":robot: I have created a release *beep* *boop*", 68 "packages": { 69 ".": { 70 "changelog-path": "CHANGELOG.md", 71 "extra-files": ["cli/__init__.py"] 72 } 73 } 74 }