freeleaps-ops/first-class-pipeline/resources/com/freeleaps/devops/builtins/semantic-release/releaserc.json
zhenyus cf060a2c0f fix(semantic-release): add additional branch filter for rules
Signed-off-by: zhenyus <zhenyus@mathmast.com>
2025-02-18 04:03:59 +08:00

30 lines
705 B
JSON

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