CI / changes (push) Successful in 5s
CI / commitlint (push) Skipped
CI / openapi (push) Successful in 38s
CI / web (push) Successful in 55s
CI / go (push) Successful in 1m4s
CI / bird2 (push) Successful in 17s
CI / release (push) Successful in 4m17s
Перевести CI, semantic-release, bake и compose с git.shts.su на git.shx.one. Co-authored-by: Cursor <[email protected]>
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"branches": ["main", "master"],
|
|
"tagFormat": "v${version}",
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"releaseRules": [
|
|
{ "type": "feat", "release": "minor" },
|
|
{ "type": "fix", "release": "patch" },
|
|
{ "type": "perf", "release": "patch" },
|
|
{ "type": "ci", "release": "patch" },
|
|
{ "type": "refactor", "release": "patch" },
|
|
{ "breaking": true, "release": "major" }
|
|
]
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
"changelogFile": "CHANGELOG.md"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/exec",
|
|
{
|
|
"successCmd": "echo ${nextRelease.version} > .release-version"
|
|
}
|
|
],
|
|
[
|
|
"@markwylde/semantic-release-gitea",
|
|
{
|
|
"giteaUrl": "https://git.shx.one",
|
|
"assets": [
|
|
{
|
|
"path": "CHANGELOG.md",
|
|
"label": "Changelog"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
]
|
|
}
|