Skip to content

Commit

Permalink
fix(ci): releaseRule type needs to be a globbing pattern
Browse files Browse the repository at this point in the history
This rule will match any type and thus any commit will be trigger a patch release

If we need to exclude specific commits from releasing we need to add a rule for those specifically.
  • Loading branch information
line-o committed Apr 19, 2024
1 parent 39b3777 commit fa91a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"releaseRules": [
{ "type": "", "release": "patch" }
{ "type": "*", "release": "patch" }
]
}],
["@semantic-release/release-notes-generator", {
Expand Down

0 comments on commit fa91a6b

Please sign in to comment.