Skip to content

Commit

Permalink
chore: update .releaserc (#29)
Browse files Browse the repository at this point in the history
This PR (hopefully) allows commits with scopes and with `feat` type to
trigger releases.
  • Loading branch information
Tbhesswebber authored Dec 22, 2023
1 parent 78b0600 commit 899dd81
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,42 @@
"releaseRules": [
{
"tag": "breaking",
"scope": "*"
"release": "major"
},
{
"tag": "feat",
"scope": "*"
"release": "minor"
},
{
"tag": "fix",
"scope": "*"
"release": "patch"
},
{
"tag": "update",
"scope": "*"
"release": "minor"
},
{
"tag": "new",
"scope": "*"
"release": "minor"
},
{
"tag": "breaking",
"scope": "*"
"release": "major"
},
{
"tag": "docs",
"scope": "*"
"release": "patch"
},
{
"tag": "upgrade",
"scope": "*"
"release": "patch"
}
]
Expand Down

0 comments on commit 899dd81

Please sign in to comment.