chore(codeowners): own the proxy-extras migrations directory - #37876
Merged
yuneng-berri merged 1 commit intoAug 21, 2026
Merged
Conversation
Adds ownership of litellm-proxy-extras/litellm_proxy_extras/migrations so schema migration changes get a review request. Also repoints the two existing entries at @yuneng-berri. GitHub's CODEOWNERS validator was rejecting @yuneng-jiang as an unknown owner, which left the /ui/ and _experimental/out/ rules inert.
Contributor
Greptile SummaryThe PR repairs two inert CODEOWNERS entries and adds ownership for proxy-extras migrations.
Confidence Score: 5/5The PR appears safe to merge because the CODEOWNERS paths and replacement accounts are supported by the provided validation evidence. The migrations pattern exactly matches the repository directory, no later rule overrides it, and GitHub’s validator reports that the updated CODEOWNERS file resolves without errors.
|
| Filename | Overview |
|---|---|
| .github/CODEOWNERS | Updates two invalid owner references and adds a correctly matched migrations ownership rule; no actionable issues found. |
Reviews (1): Last reviewed commit: "chore(codeowners): own the proxy-extras ..." | Re-trigger Greptile
yuneng-berri
enabled auto-merge
August 21, 2026 18:50
tin-berri
approved these changes
Aug 21, 2026
yucheng-berri
approved these changes
Aug 21, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
yucheng-berri
approved these changes
Aug 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TLDR
Problem this solves:
How it solves it:
User Flow
Before: a contributor changing a schema migration gets it reviewed by whoever happens to look
litellm-proxy-extras/litellm_proxy_extras/migrations//ui/also gets no automatic reviewer, because the rule covering it names an account without write accessAfter: the same PR pulls in the owning reviewers automatically
litellm-proxy-extras/litellm_proxy_extras/migrations//ui/now does the same, since that rule resolves to a real write-access accountRelevant issues
Linear ticket
Pre-Submission checklist
uv run pytest tests/test_litellm/<your_test_file>.py -vNote on the first two boxes: this PR changes only
.github/CODEOWNERS, which has no importable code and no mapped test file, so there is nothing to unit test. GitHub's own CODEOWNERS validator is the authority on whether the file is correct, and its before/after output is below in place of tests.Screenshots / Proof of Fix
GitHub validates CODEOWNERS server-side and reports every rule it cannot resolve. A rule listing an owner without write access is silently dropped, so the validator is exactly what decides whether these entries do anything.
Shared setup:
gh api "repos/BerriAI/litellm/codeowners/errors?ref=<ref>"Before (0a5fa4f)
After (6f73e5f)
git show HEAD:.github/CODEOWNERS | grep migrationsType
🚄 Infrastructure
Caveats (if any)
@yuneng-jiangis a read-only account, not a separate personFinal Attestation