freeleaps-ops/first-class-pipeline/resources/com/freeleaps/devops/builtins/semantic-release/releaserc.json
2025-02-07 15:18:40 +08:00

24 lines
526 B
JSON

{
"branches": ["master"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": ["VERSION", "CHANGELOG.md"],
"message": "chore(release): bump version and upload release assets [ci skip]"
}
]
]
}