From de733e5af6b8292c5c74de5611249f43d683b3ac Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 4 Oct 2024 01:18:16 +0700 Subject: [PATCH] chore: dont publish internal commits (#116) --- .releaserc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.releaserc b/.releaserc index 9c1ee84..2e3f880 100644 --- a/.releaserc +++ b/.releaserc @@ -21,18 +21,18 @@ "preset": "conventionalcommits", "presetConfig": { "types": [ - { "type": "build", "section": "Build System", "hidden": false }, - { "type": "chore", "section": "Build System", "hidden": false }, - { "type": "chore", "scope": "merge", "section": "Build System", "hidden": true }, - { "type": "ci", "section": "Continuous Integration", "hidden": false }, + { "type": "build", "section": "Build System", "hidden": true }, + { "type": "chore", "scope": "deps", "section": "Build System", "hidden": false }, + { "type": "chore", "section": "Build System", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true }, { "type": "docs", "section": "Documentation", "hidden": false }, { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug Fixes", "hidden": false }, { "type": "perf", "section": "Performance Improvements", "hidden": false }, - { "type": "refactor", "section": "Code Refactoring", "hidden": false }, - { "type": "revert", "section": "Reverted Changes", "hidden": false }, - { "type": "style", "section": "Styles", "hidden": false }, - { "type": "test", "section": "Tests", "hidden": false } + { "type": "refactor", "section": "Code Refactoring", "hidden": true }, + { "type": "revert", "section": "Reverted Changes", "hidden": true }, + { "type": "style", "section": "Styles", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true } ] }, "writerOpts": {