From 00cae1550c79e2655d9ac07b37272ced1dbf0a13 Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Tue, 5 May 2026 22:31:23 -0400 Subject: [PATCH] ci: align release-please with trogon-proto Signed-off-by: Yordis Prieto --- ...ease-please-config.json => release-please-config.json} | 0 ...-please-manifest.json => release-please-manifest.json} | 0 .github/workflows/release-please.yml | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename .github/{.release-please-config.json => release-please-config.json} (100%) rename .github/{.release-please-manifest.json => release-please-manifest.json} (100%) diff --git a/.github/.release-please-config.json b/.github/release-please-config.json similarity index 100% rename from .github/.release-please-config.json rename to .github/release-please-config.json diff --git a/.github/.release-please-manifest.json b/.github/release-please-manifest.json similarity index 100% rename from .github/.release-please-manifest.json rename to .github/release-please-manifest.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 070c208..8cb4883 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,18 +1,18 @@ ---- name: Release Please on: push: branches: - main + workflow_dispatch: permissions: contents: write - issues: write pull-requests: write jobs: release-please: + if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - name: Release Please @@ -20,5 +20,5 @@ jobs: uses: googleapis/release-please-action@v5.0.0 with: token: ${{ secrets.GH_PAT_RELEASE_PLEASE_ACTION }} - config-file: .github/.release-please-config.json - manifest-file: .github/.release-please-manifest.json + config-file: .github/release-please-config.json + manifest-file: .github/release-please-manifest.json