From a98d1e2689a247c4b667e7d1f1be49d017f74052 Mon Sep 17 00:00:00 2001 From: rkodev <43806892+rkodev@users.noreply.github.com> Date: Tue, 21 May 2024 18:11:36 +0300 Subject: [PATCH] Fix changelog packages --- release-please-config.json | 38 ++++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 1d6e109e10..25862f125b 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,15 +1,33 @@ { - "exclude-paths": [ - ".git", - ".idea", - ".github", - ".vscode" - ], "release-type": "go", - "bump-minor-pre-major": true, - "bump-patch-for-minor-pre-major": true, - "include-component-in-tag": true, - "include-v-in-tag": true, + "packages": { + ".": { + "package-name": "github.com/microsoftgraph/msgraph-sdk-go", + "path": ".", + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, + "include-component-in-tag": true, + "changelog-path": "CHANGELOG.md", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "chore", + "section": "Chores" + } + ] + } + }, "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" } \ No newline at end of file