From c402c7bab7baababbbc7c82965d8337de7d50d35 Mon Sep 17 00:00:00 2001 From: Thomas Schuetz Date: Wed, 22 Mar 2023 15:46:25 +0100 Subject: [PATCH] fix: release please config Signed-off-by: Thomas Schuetz --- release-please-config.json | 74 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index e69de29bb2..ec7c7919b3 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -0,0 +1,74 @@ +{ + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "go", + "prerelease": false, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, + "draft": false, + "extra-files": [ + "README.md", + "deploy/manifest.yaml", + "chart/Chart.yaml", + "chart/values.yaml" + ], + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "chore", + "section": "Other" + }, + { + "type": "docs", + "section": "Docs" + }, + { + "type": "perf", + "section": "Performance" + }, + { + "type": "build", + "hidden": true, + "section": "Build" + }, + { + "type": "deps", + "section": "Dependency Updates" + }, + { + "type": "ci", + "hidden": true, + "section": "CI" + }, + { + "type": "refactor", + "section": "Refactoring" + }, + { + "type": "revert", + "hidden": true, + "section": "Reverts" + }, + { + "type": "style", + "hidden": true, + "section": "Styling" + }, + { + "type": "test", + "hidden": true, + "section": "Tests" + } + ] + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +} \ No newline at end of file