Skip to content

feat: add release token to release-please action in python.yml#106

Merged
twangodev merged 1 commit intomainfrom
fix/release-please
Feb 13, 2026
Merged

feat: add release token to release-please action in python.yml#106
twangodev merged 1 commit intomainfrom
fix/release-please

Conversation

@twangodev
Copy link
Collaborator

No description provided.

Copilot AI review requested due to automatic review settings February 13, 2026 09:46
@twangodev twangodev merged commit bf53815 into main Feb 13, 2026
19 checks passed
@coderabbitai
Copy link

coderabbitai bot commented Feb 13, 2026

Warning

Rate limit exceeded

@twangodev has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 11 minutes and 20 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix/release-please

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@twangodev twangodev deleted the fix/release-please branch February 13, 2026 09:46
@codecov
Copy link

codecov bot commented Feb 13, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds an explicit authentication token to the release-please GitHub Action in the Python CI workflow, likely to use a PAT/fine-grained token instead of the default GITHUB_TOKEN.

Changes:

  • Configures googleapis/release-please-action@v4 to use ${{ secrets.RELEASE_TOKEN }} via the with.token input.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

- 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant