ci: adds next release channel

This commit is contained in:
GitHub Actions
2022-04-13 12:54:06 +02:00
parent 62cc7b142a
commit 3c630ecb73
3 changed files with 488 additions and 688 deletions

View File

@@ -1,5 +1,8 @@
{
"branches": [{ "name": "main" }],
"branches": [
{ "name": "main" },
{ "name": "next", "channel": "next", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
@@ -10,6 +13,13 @@
"assets": ["CHANGELOG.md", "package.json", "package-lock.json"]
}
],
"@semantic-release/github"
"@semantic-release/github",
[
"@saithodev/semantic-release-backmerge",
{
"branches": [{ "from": "main", "to": "next" }],
"backmergeStrategy": "rebase"
}
]
]
}