Skip to content

Commit

Permalink
ci: update release config
Browse files Browse the repository at this point in the history
  • Loading branch information
RaunoT committed Sep 5, 2024
1 parent 3910827 commit 0f6ff2e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .cz-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,11 @@ module.exports = {
name: 'test: Adding missing tests or correcting existing tests',
},
],
scopes: [{ name: 'rewind' }, { name: 'dashboard' }, { name: 'config' }],
scopes: [
{ name: 'rewind' },
{ name: 'dashboard' },
{ name: 'config' },
{ name: 'api' },
{ name: 'dependencies' },
],
}
12 changes: 9 additions & 3 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
{
"preset": "conventionalcommits",
"releaseRules": [
{ "breaking": true, "release": "major" },
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "ui", "release": "patch" },
{ "type": "perf", "release": "patch" },
{ "type": "build", "release": "patch" },
{ "type": "ci", "release": "patch" },
{ "type": "revert", "release": "patch" },
{ "type": "docs", "release": false },
{ "type": "ci", "release": false },
{ "type": "chore", "release": false },
{ "type": "refactor", "release": false },
{ "type": "style", "release": false },
Expand All @@ -35,16 +36,21 @@
"hidden": false
},
{ "type": "build", "section": "🛠️ Other Changes", "hidden": false },
{ "type": "ci", "section": "🛠️ Other Changes", "hidden": false },
{ "type": "revert", "section": "⏪ Reverts", "hidden": false },
{ "type": "docs", "section": "📝 Documentation", "hidden": false },
{ "type": "ci", "hidden": true },
{ "type": "chore", "hidden": true },
{
"type": "refactor",
"hidden": true
},
{ "type": "style", "hidden": true },
{ "type": "test", "hidden": true }
{ "type": "test", "hidden": true },
{
"type": "breaking",
"section": "❗ Breaking Changes",
"hidden": false
}
]
}
}
Expand Down

0 comments on commit 0f6ff2e

Please sign in to comment.