From 1b0c0ce5adf7a5d8929b74aa7efe6ec29e11f14c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 1 Jan 2024 03:20:09 +0000 Subject: [PATCH 1/2] fix(deps): Update google-github-actions/release-please-action action to v4 --- .github/workflows/release_pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_pr.yml b/.github/workflows/release_pr.yml index 7e4b9c9..11e5381 100644 --- a/.github/workflows/release_pr.yml +++ b/.github/workflows/release_pr.yml @@ -8,7 +8,7 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 id: release with: release-type: python From e05951efdc031e360106de8b8929080aea080bb8 Mon Sep 17 00:00:00 2001 From: erezrokah Date: Tue, 2 Jan 2024 11:56:17 +0000 Subject: [PATCH 2/2] chore: Migrate to manifest file --- .github/workflows/release_pr.yml | 7 ------- .release-please-manifest.json | 3 +++ release-please-config.json | 11 +++++++++++ 3 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release_pr.yml b/.github/workflows/release_pr.yml index 11e5381..a431fe5 100644 --- a/.github/workflows/release_pr.yml +++ b/.github/workflows/release_pr.yml @@ -11,11 +11,4 @@ jobs: - uses: google-github-actions/release-please-action@v4 id: release with: - release-type: python - package-name: plugin-sdk-python token: ${{ secrets.GH_CQ_BOT }} - pull-request-title-pattern: "chore${scope}: Release${component} v${version}" - # Should breaking changes before 1.0.0 produce minor bumps? - bump-minor-pre-major: true - # Should feat changes before 1.0.0 produce patch bumps instead of minor bumps? - bump-patch-for-minor-pre-major: true diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..4a8e97c --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.1.10" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..5e60778 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "python", + "pull-request-title-pattern": "chore${scope}: Release${component} v${version}", + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, + "include-component-in-tag": false, + "packages": { + ".": {} + } +}