feat: add release token to release-please action in python.yml#106
feat: add release token to release-please action in python.yml#106
Conversation
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the 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)
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. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
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@v4to use${{ secrets.RELEASE_TOKEN }}via thewith.tokeninput.
💡 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 }} |
There was a problem hiding this comment.
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.).
| token: ${{ secrets.RELEASE_TOKEN }} | |
| token: ${{ secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }} |
No description provided.