From 82a2193da18b9234b1252564d3442af221346204 Mon Sep 17 00:00:00 2001 From: Noa Lucent Date: Wed, 1 Oct 2025 23:02:10 +0000 Subject: [PATCH] chore(release-please): use googleapis action + PAT secret --- .github/workflows/release-please.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index d5ca8a5..43273d2 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -18,9 +18,15 @@ jobs: release: runs-on: ubuntu-latest steps: + - name: Check release token + if: ${{ !secrets.RELEASE_PLEASE_TOKEN }} + run: | + echo "Missing required secret RELEASE_PLEASE_TOKEN (fine-grained PAT with contents:rw, pull_requests:rw)." >&2 + exit 1 - name: Release Please - uses: google-github-actions/release-please-action@v4 + uses: googleapis/release-please-action@v4 with: + token: ${{ secrets.RELEASE_PLEASE_TOKEN }} release-type: rust package-name: codex-tools-mcp bump-minor-pre-major: true