Revert "Remove actions: write from triage workflow" - #272
Conversation
This reverts commit 978211f.
|
Warning Review limit reached
Next review available in: 51 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
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 |
There was a problem hiding this comment.
Pull request overview
This PR reverts changes from #271 in the reusable issue/PR triage workflow by restoring broader GitHub token permissions and reverting the pinned actions/ai-inference action revision.
Changes:
- Restores
actions: writepermission to the reusable triage workflow. - Reverts
actions/ai-inferencefrom a v3 pin back to a v2 pin (in two job steps).
Suppressed comments (1)
.github/workflows/reusable-issue-triage.yml:269
- This change downgrades
actions/ai-inferencefrom the previously pinned v3 SHA to a v2 SHA. If the goal of this PR is only to restore the removedactions: writepermission, this extra version change is surprising and could reintroduce older behavior or security issues. Please confirm the downgrade is intentional and (if not) keep the v3 pin.
- name: Analyze with AI
id: ai-triage
uses: actions/ai-inference@a7805884c80886efc241e94a5351df715968a0ad # v2
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| permissions: | ||
| issues: write | ||
| pull-requests: write | ||
| actions: write | ||
| contents: read |
| - name: Analyze with AI | ||
| id: ai-triage | ||
| uses: actions/ai-inference@2c43c91ae16266ca159d311430343c67a5ffa222 # v3 | ||
| uses: actions/ai-inference@a7805884c80886efc241e94a5351df715968a0ad # v2 |
Reverts #271