From cf673cd59e3f0d5cb421840a32d8000216cf94f9 Mon Sep 17 00:00:00 2001 From: Rui Martins Date: Tue, 10 Mar 2026 14:07:28 +0000 Subject: [PATCH] fix(ci): use PAT for release-please to trigger CI on its PRs GitHub prevents events created by GITHUB_TOKEN from triggering other workflows, so CI checks never run on release-please PRs. Switch to RP_TOKEN (fine-grained PAT) to fix this. --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 10b2f9c2..1350e0d4 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -19,7 +19,7 @@ jobs: - uses: googleapis/release-please-action@v4 id: release with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.RP_TOKEN }} target-branch: main config-file: .github/release-please-config.json manifest-file: .github/release-please-manifest.json