From 1e6304a1fb9e02f5811eadb2e1ad8c4e59003d81 Mon Sep 17 00:00:00 2001 From: razonyang Date: Mon, 25 Mar 2024 11:47:27 +0800 Subject: [PATCH] chore: configure release please --- .github/workflows/release-please.yml | 2 +- .release-please-manifest.json | 3 +++ release-please-config.json | 22 ++++++++++++++++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 201c6af..e0ca9f8 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -15,4 +15,4 @@ jobs: steps: - uses: google-github-actions/release-please-action@v3 with: - release-type: go + command: manifest diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..8d7a673 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.3.0" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..e102f96 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "monorepo-tags": true, + "release-type": "go", + "tag-separator": "/", + "changelog-sections": [ + { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, + { "type": "ci", "section": "Continuous Integration" }, + { "type": "docs", "section": "Documentation 📝" }, + { "type": "feat", "section": "Features ✨" }, + { "type": "feature", "section": "Features ✨" }, + { "type": "fix", "section": "Bug Fixes 🐞" }, + { "type": "perf", "section": "Performance Improvements ⚡️" }, + { "type": "style", "section": "Styles 🎨" } + ], + "packages": { + ".": { + "exclude-paths": [ + ] + } + } +}