Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ jobs:
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.RELEASE_TOKEN }}
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

secrets.RELEASE_TOKEN is not a default GitHub-provided secret; if it isn't configured in the repo/org, this workflow will fail at runtime. Consider either (a) using ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }} as a fallback, or (b) adding repo documentation/onboarding notes that this secret must be created and what minimal scopes it needs (fine-grained PAT with contents/pull-requests write, etc.).

Suggested change
token: ${{ secrets.RELEASE_TOKEN }}
token: ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }}

Copilot uses AI. Check for mistakes.

publish:
name: Publish to PyPI
Expand Down