schedule releases for Monday morning#710
Conversation
|
Warning Review limit reached
Next review available in: 43 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: Central YAML (base), Organization UI (inherited) 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 |
Greptile SummaryAdds a scheduled GitHub Actions workflow that runs at 10:00 UTC every Monday (plus
Confidence Score: 5/5The workflow is CI-only automation with no effect on application code; it is safe to merge. The script is tightly scoped: it fails loudly on any gh error (set -euo pipefail), skips when no qualifying PR exists, skips when the PR body is empty, and defers the actual merge to GitHub's auto-merge gate so required status checks still run. The PAT is used only as GH_TOKEN, repo permissions are locked down, and the concurrency group prevents concurrent runs. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "harden release PR lookup" | Re-trigger Greptile |
Summary
0 10 * * 1UTC.releasebranch PR created by the release-plz task.Validation
actionlint -stdin-filename .github/workflows/auto-merge-release.yml -Note
Low Risk
Adds release-timing automation only; merge is gated on a non-empty PR body and uses an existing release token.
Overview
Adds
auto-merge-releaseGitHub Actions workflow to land the existingrelease→mainPR on a fixed schedule instead of merging it manually.The job runs Mondays at 10:00 UTC (and via
workflow_dispatch), only onjdx/usage. It looks up the open PR whose head isrelease, exits quietly if none exists, and skips merge when the PR body is empty so release-plz can finish filling changelog text before the next run. When ready, it runsgh pr merge --squash --autousingMY_RELEASE_PLEASE_TOKEN. Concurrency is serialized withcancel-in-progress: falseso overlapping runs do not fight each other.Reviewed by Cursor Bugbot for commit 03acc4c. Bugbot is set up for automated code reviews on this repo. Configure here.