From 8231d2c3223a8dcd880c64d89b125ded10585a70 Mon Sep 17 00:00:00 2001 From: Alexey Shalaev <75322386+AlexeyShalaev@users.noreply.github.com> Date: Sun, 6 Sep 2026 10:27:03 +0300 Subject: [PATCH] ci: keep docs commits out of releases release-please-action@v5 treats docs: as releasable and cut a patch release for a SECURITY.md change. Spell the changelog sections out: feat/fix/perf/revert make a release; docs, refactor, test, build, ci, chore and style are hidden and do not. --- release-please-config.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index c336ab2..be6db85 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,5 +1,18 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "changelog-sections": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "revert", "section": "Reverts" }, + { "type": "docs", "section": "Documentation", "hidden": true }, + { "type": "refactor", "section": "Code Refactoring", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true }, + { "type": "build", "section": "Build System", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true }, + { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, + { "type": "style", "section": "Styles", "hidden": true } + ], "packages": { ".": { "release-type": "python",