ci: don't hide or ignore any commit types, at least bump the patch version if

new commits are detected by release.yml
This commit is contained in:
badblocks 2025-08-14 20:35:26 -07:00
parent 12e06902eb
commit 185dc5f662
No known key found for this signature in database
2 changed files with 46 additions and 47 deletions

View file

@ -14,7 +14,7 @@
{ "type": "ci", "section": "CI/CD" },
{ "type": "docs", "section": "Documentation" },
{ "type": "refactor", "section": "Refactor" },
{ "type": "chore", "hidden": true }
{ "type": "chore", "section": "Chores" }
]
},
"plugins": [
@ -31,11 +31,11 @@
{ "type": "deps", "release": "minor" },
{ "type": "new", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "build", "release": false },
{ "type": "ci", "release": false },
{ "type": "chore", "release": false },
{ "type": "docs", "release": false },
{ "type": "refactor", "release": false }
{ "type": "build", "release": "patch" },
{ "type": "ci", "release": "patch" },
{ "type": "chore", "release": "patch" },
{ "type": "docs", "release": "patch" },
{ "type": "refactor", "release": "patch" }
]
}
],