Skip to content

Commit

Permalink
chore: add patch for deps bot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
pmvald committed Mar 3, 2024
1 parent 19626a4 commit c060274
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions release.config.js
@@ -1,6 +1,6 @@
module.exports = {
debug: true,
branches: 'release',
branches: 'master',
verifyConditions: [
'@semantic-release/changelog',
'@semantic-release/github',
Expand All @@ -17,5 +17,13 @@ module.exports = {
],
success: [
'@semantic-release/github'
]
],
releaseRules: [
{ breaking: true, release: 'major' },
{ revert: true, release: 'patch' },
{ type: 'feat', release: 'minor' },
{ type: 'fix', release: 'patch' },
{ type: 'perf', release: 'patch' },
{ type: 'chore', release: 'patch' }
],
}

0 comments on commit c060274

Please sign in to comment.