From 39fc9742e7d3e315fbaedd1d21d4079cbe4872d9 Mon Sep 17 00:00:00 2001 From: EdenEast Date: Sat, 1 Jun 2024 12:02:48 -0400 Subject: [PATCH] chore: bootstrap releases for path: . (#54) --- .github/release-please-config.json | 19 +++++++++++++++++++ .github/release-please-manifest.json | 3 +++ .github/workflows/check.yml | 5 +---- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 .github/release-please-config.json create mode 100644 .github/release-please-manifest.json diff --git a/.github/release-please-config.json b/.github/release-please-config.json new file mode 100644 index 0000000..30b96b9 --- /dev/null +++ b/.github/release-please-config.json @@ -0,0 +1,19 @@ +{ + "changelog-sections": [ + { "type": "security", "section": "Security", "hidden": false }, + { "type": "feat", "section": "Features", "hidden": false }, + { "type": "fix", "section": "Fixes", "hidden": false }, + { "type": "chore", "section": "Other Changes", "hidden": false } + ], + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "rust", + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, + "draft": true, + "prerelease": false + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +} diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json new file mode 100644 index 0000000..af55ef0 --- /dev/null +++ b/.github/release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.2.1" +} diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 58a54ae..2b7f6c8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -123,7 +123,7 @@ jobs: release_created: ${{ steps.release.outputs.release_created }} tag_name: ${{ steps.release.outputs.tag_name }} steps: - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 id: release with: token: ${{ secrets.GITHUB_TOKEN }} @@ -131,6 +131,3 @@ jobs: release-type: rust config-file: .github/release-please-config.json manifest-file: .github/release-please-manifest.json - bump-minor-pre-major: true - bump-patch-for-minor-pre-major: true - draft: true