Skip to content

Commit

Permalink
ci(commitlint): Fix exclusion for release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Mar 20, 2024
1 parent d9295a3 commit ddd09d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .commitlintrc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export default {
},
ignores: [
// Ignore release commits, as their subject doesn't start with an uppercase letter
(message) => message.startsWith("release: v"),
(message) => message.startsWith("release: "),
]
};

0 comments on commit ddd09d6

Please sign in to comment.