Skip to content

Commit

Permalink
ci(workflows): add release config
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijsdeman committed Oct 23, 2024
1 parent 1dcd6ec commit adfd40a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* @type {import('semantic-release').GlobalConfig}
*/
export default {
branches: ['main'],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/github',
{
successComment: false,
failComment: false,
failTitle: false,
labels: false,
releasedLabels: false,
},
],
[
'@semantic-release/git',
{
assets: ['package.json'],
message: 'chore(release): ${nextRelease.version}\n\n${nextRelease.notes}',
},
],
],
};

0 comments on commit adfd40a

Please sign in to comment.