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": [ + ] + } + } +}