Skip to content

Commit

Permalink
fix: only skip non breaking chre(deps)
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 16, 2022
1 parent 6fc5087 commit 20e622e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Expand Up @@ -29,7 +29,7 @@ async function main () {
// Parse commits as conventional commits
const commits = parseCommits(rawCommits, config).filter(c =>
config.types[c.type] &&
c.scope !== 'deps'
!(c.type === 'chore' && c.scope === 'deps' && !c.isBreaking)
)

// Bump version optionally
Expand Down

0 comments on commit 20e622e

Please sign in to comment.