-
Notifications
You must be signed in to change notification settings - Fork 24
chore: update CODEOWNERS for dependency files #136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe pull request adds codeowner entries to the CODEOWNERS file, assigning responsibility for Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ 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 |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| pyproject.toml @kinde-oss/sdk-engineers | ||
| **/pyproject.toml @kinde-oss/sdk-engineers | ||
| pyproject.toml @kinde-oss/sdk-engineers | ||
| **/pyproject.toml @kinde-oss/sdk-engineers | ||
| pyproject.toml @kinde-oss/sdk-engineers | ||
| **/pyproject.toml @kinde-oss/sdk-engineers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove duplicate entries for pyproject.toml.
Each pattern for pyproject.toml is repeated three times. CODEOWNERS only requires one entry per pattern, and duplicates make the file harder to maintain.
Apply this diff to remove the duplicates:
* @kinde-oss/giants-kinde
pyproject.toml @kinde-oss/sdk-engineers
**/pyproject.toml @kinde-oss/sdk-engineers
-pyproject.toml @kinde-oss/sdk-engineers
-**/pyproject.toml @kinde-oss/sdk-engineers
-pyproject.toml @kinde-oss/sdk-engineers
-**/pyproject.toml @kinde-oss/sdk-engineers
requirements.txt @kinde-oss/sdk-engineers
**/requirements.txt @kinde-oss/sdk-engineersNote: This appears to be an automated PR. Please review the automation script that generated these entries to prevent similar issues in future updates.
🤖 Prompt for AI Agents
In CODEOWNERS around lines 2 to 7, there are duplicate entries for
pyproject.toml (each pattern repeated three times); remove the duplicate lines
so each distinct pattern appears only once (leave a single entry for each of:
"pyproject.toml", "**/pyproject.toml" if both are required, otherwise only the
most appropriate pattern), keep the @kinde-oss/sdk-engineers owner on the
remaining entries, and update the automation script that generates CODEOWNERS to
prevent emitting repeated lines.
Automated update to CODEOWNERS so that @kinde-oss/sdk-engineers own dependency definition files and can approve dependency PRs.