From d2143e6a4e83fe3fa44ed74726a1e08d5b8445df Mon Sep 17 00:00:00 2001 From: Nicolas BRIERE Date: Thu, 8 Aug 2024 10:06:10 +0200 Subject: [PATCH] build: release please configuration --- .release-please-manifest.json | 3 ++ release-please-config.json | 59 +++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..c9f8280 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "v2.0.1" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..f06984d --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,59 @@ +{ + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "terraform-module", + "bump-minor-pre-major": false, + "bump-patch-for-minor-pre-major": false, + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "feature", + "section": "feature" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "chore", + "section": "Miscellaneous Chores" + }, + { + "type": "refactor", + "section": "Code Refactoring" + }, + { + "type": "test", + "section": "Tests" + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration" + } + ], + "draft": false, + "prerelease": false + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +} \ No newline at end of file