|
| 1 | +{ |
| 2 | + "repositoryUrl": "https://github.com/CrackingShells/Hatch-Validator", |
| 3 | + "tagFormat": "v${version}", |
| 4 | + "branches": [ |
| 5 | + "main", |
| 6 | + { |
| 7 | + "name": "dev", |
| 8 | + "prerelease": "dev" |
| 9 | + } |
| 10 | + ], |
| 11 | + "plugins": [ |
| 12 | + [ |
| 13 | + "@semantic-release/commit-analyzer", |
| 14 | + { |
| 15 | + "preset": "conventionalcommits", |
| 16 | + "releaseRules": [ |
| 17 | + {"type": "docs", "scope": "README", "release": "patch"}, |
| 18 | + {"type": "refactor", "release": "patch"}, |
| 19 | + {"type": "style", "release": "patch"}, |
| 20 | + {"type": "test", "release": false}, |
| 21 | + {"type": "chore", "release": false} |
| 22 | + ] |
| 23 | + } |
| 24 | + ], |
| 25 | + [ |
| 26 | + "@semantic-release/release-notes-generator", |
| 27 | + { |
| 28 | + "preset": "conventionalcommits", |
| 29 | + "presetConfig": { |
| 30 | + "types": [ |
| 31 | + {"type": "feat", "section": "Features"}, |
| 32 | + {"type": "fix", "section": "Bug Fixes"}, |
| 33 | + {"type": "docs", "section": "Documentation"}, |
| 34 | + {"type": "refactor", "section": "Code Refactoring"}, |
| 35 | + {"type": "perf", "section": "Performance Improvements"} |
| 36 | + ] |
| 37 | + } |
| 38 | + } |
| 39 | + ], |
| 40 | + [ |
| 41 | + "@semantic-release/changelog", |
| 42 | + { |
| 43 | + "changelogFile": "CHANGELOG.md" |
| 44 | + } |
| 45 | + ], |
| 46 | + [ |
| 47 | + "@semantic-release/git", |
| 48 | + { |
| 49 | + "assets": ["CHANGELOG.md", "pyproject.toml"], |
| 50 | + "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" |
| 51 | + } |
| 52 | + ], |
| 53 | + [ |
| 54 | + "@semantic-release/github", |
| 55 | + { |
| 56 | + "successComment": false, |
| 57 | + "failComment": false, |
| 58 | + "releasedLabels": false |
| 59 | + } |
| 60 | + ] |
| 61 | + ] |
| 62 | +} |
0 commit comments