Auto-assign on fork PRs via pull_request_target - #84
Conversation
…andon Change assignee from TrevorSchirmer to bharvey88
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
…s/github-actions-ee1c097272 chore(ci): bump actions/checkout from 4.2.2 to 5.0.0 in the github-actions group
Release 26.3.2.1 - New sensors, ESPHome modernisation, and bug fixes
Bumps the github-actions group with 1 update: [pozil/auto-assign-issue](https://github.com/pozil/auto-assign-issue). Updates `pozil/auto-assign-issue` from 2 to 3 - [Release notes](https://github.com/pozil/auto-assign-issue/releases) - [Commits](pozil/auto-assign-issue@v2...v3) --- updated-dependencies: - dependency-name: pozil/auto-assign-issue dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
…s/github-actions-3fa3f09d17 chore(ci): bump pozil/auto-assign-issue from 2 to 3 in the github-actions group
Bumps the github-actions group with 2 updates: [pozil/auto-assign-issue](https://github.com/pozil/auto-assign-issue) and [actions/checkout](https://github.com/actions/checkout). Updates `pozil/auto-assign-issue` from 3 to 4 - [Release notes](https://github.com/pozil/auto-assign-issue/releases) - [Commits](pozil/auto-assign-issue@v3...v4) Updates `actions/checkout` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.2...v6.0.3) --- updated-dependencies: - dependency-name: pozil/auto-assign-issue dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
…s/github-actions-346f710312 chore(ci): bump the github-actions group with 2 updates
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.3...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
…s/github-actions-2217aebe03 chore(ci): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group
Replaces inline version-pinned actions with thin callers of ApolloAutomation/Workflows reusable workflows referenced @main. Leaf repo now contains zero dependabot-bumpable refs; action version pins are centralized in the Workflows repo. Dependabot schedule relaxed to monthly as a safety net. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Consolidate workflows into shared ApolloAutomation/Workflows reusable workflows
Standardize pull request template
Add MSR-2 datasheet
Resolve workflow conflicts by taking main's consolidated reusable workflows (ci.yml, autoassign.yml) from #78. Brings in the MSR-2 datasheet, standardized PR template, and dependabot updates.
Switch the auto-assign trigger from pull_request to pull_request_target and drop the fork-skip guard, so PRs opened from forks get auto-assigned. Fork pull_request runs only receive a read-only GITHUB_TOKEN, which is why assignment was skipped for them. pull_request_target runs in the base-repo context with a write token; safe here because the workflow never checks out or executes PR code.
|
Warning Review limit reached
Next review available in: 48 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: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (5)
✨ 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 |
Make auto-assign run on PRs opened from forks.
Currently
autoassign.ymltriggers onpull_requestand skips forks (if: ... head.repo.full_name == github.repository), because forkpull_requestruns only get a read-onlyGITHUB_TOKEN. This switches the trigger topull_request_targetand removes the fork-skip guard, so fork PRs get auto-assigned to bharvey88.pull_request_targetruns in the base-repo context with a write token. Safe here because this workflow never checks out or executes PR code — it only assigns.Stacked on #83 (Sync main into beta): this builds on the consolidated reusable-workflow version. Merge #83 first; the diff here will then reduce to just the autoassign change.
🤖 Generated with Claude Code