From 05121a685e6b96887aea16591f6fb627a2e1d288 Mon Sep 17 00:00:00 2001 From: mjain6 Date: Mon, 25 May 2026 15:46:27 +0530 Subject: [PATCH 1/2] update GoogleCloudPlatform/ release-please action to googleapis/release-please --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6637347..2fc7fdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,18 +7,20 @@ name: CI jobs: ci: runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write steps: - name: Check-out source code uses: actions/checkout@v2 - name: Prepare GitHub release id: create_prod_release - uses: GoogleCloudPlatform/release-please-action@v2 + uses: fortify/3rdparty-actions/actions/googleapis/release-please-action/v5@main if: github.ref == 'refs/heads/main' with: - command: github-release release-type: simple - package-name: ${{ github.event.repository.name }} + skip-github-pull-request: true - name: Define build properties run: | @@ -37,10 +39,8 @@ jobs: ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} - name: Prepare release PR - uses: GoogleCloudPlatform/release-please-action@v2 + uses: fortify/3rdparty-actions/actions/googleapis/release-please-action/v5@main if: github.ref == 'refs/heads/main' with: - command: release-pr release-type: simple - package-name: ${{ github.event.repository.name }} - changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"api","section":"API changes","hidden":false}]' + skip-github-release: true From 590b74a36225055393ba18896aaef7463d11d331 Mon Sep 17 00:00:00 2001 From: mjain6 Date: Wed, 27 May 2026 10:32:58 +0530 Subject: [PATCH 2/2] Revert extra changes --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fc7fdf..7e69272 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,9 @@ jobs: uses: fortify/3rdparty-actions/actions/googleapis/release-please-action/v5@main if: github.ref == 'refs/heads/main' with: + command: github-release release-type: simple - skip-github-pull-request: true + package-name: ${{ github.event.repository.name }} - name: Define build properties run: | @@ -42,5 +43,7 @@ jobs: uses: fortify/3rdparty-actions/actions/googleapis/release-please-action/v5@main if: github.ref == 'refs/heads/main' with: + command: release-pr release-type: simple - skip-github-release: true + package-name: ${{ github.event.repository.name }} + changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"api","section":"API changes","hidden":false}]'