mirror of
https://github.com/IBM/fp-go.git
synced 2025-08-10 22:31:32 +02:00
67 lines
1.2 KiB
Plaintext
67 lines
1.2 KiB
Plaintext
{
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"releasedLabels": false
|
|
}
|
|
]
|
|
],
|
|
"analyzeCommits": {
|
|
"releaseRules": [
|
|
{
|
|
"type": "build",
|
|
"release": "patch"
|
|
}
|
|
]
|
|
},
|
|
"preset": "conventionalcommits",
|
|
"presetConfig": {
|
|
"types": [
|
|
{
|
|
"type": "feat",
|
|
"section": "Features"
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"section": "Bug Fixes"
|
|
},
|
|
{
|
|
"type": "perf",
|
|
"section": "Performance Improvements"
|
|
},
|
|
{
|
|
"type": "revert",
|
|
"section": "Reverts"
|
|
},
|
|
{
|
|
"type": "docs",
|
|
"section": "Documentation"
|
|
},
|
|
{
|
|
"type": "chore",
|
|
"section": "Miscellaneous Chores"
|
|
},
|
|
{
|
|
"type": "refactor",
|
|
"section": "Code Refactoring"
|
|
},
|
|
{
|
|
"type": "test",
|
|
"section": "Tests"
|
|
},
|
|
{
|
|
"type": "build",
|
|
"section": "Build System"
|
|
}
|
|
]
|
|
},
|
|
"tagFormat": "v${version}",
|
|
"branches": [
|
|
{
|
|
"name": "main"
|
|
}
|
|
]
|
|
} |