IS-11736 Add CODEOWNERS for the dependency manifests - #299
Merged
Conversation
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds GitHub CODEOWNERS rules so dependency-update PRs (Dependabot / Sonatype IQ) automatically request reviews from the appropriate maintainers, while leaving all other repository files intentionally unowned to preserve the existing “anyone can pick up” workflow.
Changes:
- Introduces a
.github/CODEOWNERSfile. - Assigns code owners specifically for
package.jsonfiles (with a safe catch-all) and the single rootpackage-lock.json. - Adds more specific ownership overrides for known workspaces to route reviews to the most relevant maintainers.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
urre
approved these changes
Aug 21, 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.
IS-11736 — adds a
CODEOWNERSfile so dependency-update pull requests automatically request review. Today no CODEOWNERS file exists and Dependabot PRs request no reviewers, so nobody is notified and updates pile up unseen.Ownership covers only the
package.jsonfiles and the lockfile — the files Dependabot and Sonatype IQ change. Everything else is deliberately left unowned, so ordinary code pull requests stay free for anyone to pick up and keep the normal review rule.Owners per manifest follow actual contribution to that workspace.
Two notes for reviewers:
package-lock.json, so@urreand@aleixsuauare included on all of them, plus the affected workspace's owners.**/package.jsoncatch-all is first on purpose: without it a workspace added later would have an unowned manifest, reintroducing the problem this fixes.Part of IS-11678.
🤖 Generated with Claude Code