Skip to content

Commit

Permalink
ci: Fix auto-release (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Jan 1, 2025
1 parent acf636e commit b0b1498
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ async function config() {
{ scope: 'no-release', release: false },
],
parserOpts: {
noteKeywords: [ 'BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING' ],
noteKeywords: ['BREAKING CHANGE'],
},
}],
['@semantic-release/release-notes-generator', {
preset: 'angular',
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING']
noteKeywords: ['BREAKING CHANGE']
},
writerOpts: {
commitsSort: ['subject', 'scope'],
Expand All @@ -90,16 +90,6 @@ async function config() {
labels: ['type:ci'],
releasedLabels: ['state:released<%= nextRelease.channel ? `-\${nextRelease.channel}` : "" %>']
}],
// Back-merge module runs last because if it fails it should not impede the release process
[
"@saithodev/semantic-release-backmerge",
{
"backmergeBranches": [
{ from: "beta", to: "alpha" },
{ from: "release", to: "beta" },
]
}
],
],
};

Expand Down

0 comments on commit b0b1498

Please sign in to comment.