diff --git a/semantic-release/release.config.mjs b/semantic-release/release.config.mjs index 8a0b6fc..a9a15fc 100644 --- a/semantic-release/release.config.mjs +++ b/semantic-release/release.config.mjs @@ -5,8 +5,8 @@ export default { branches: [ { name: "master", - channel: "beta" - } + channel: "beta", + }, ], plugins: [ [ @@ -30,14 +30,9 @@ export default { "@semantic-release/git", { assets: ["package.json", "CHANGELOG.md"], - message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", + message: + "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", }, ], - [ - "@semantic-release/github", - { - draftRelease: true - } - ] - ] -}; \ No newline at end of file + ], +};