-
Notifications
You must be signed in to change notification settings - Fork 0
chore(codeowners): expand placeholder to real ownership rules #516
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,10 @@ | ||
| * @Phenotype-Enterprise/engineering-leads | ||
| # Global code owners for KooshaPari org | ||
| * @KooshaPari | ||
|
|
||
| # Infrastructure as code | ||
| /iac/ @KooshaPari | ||
| /.github/ @KooshaPari | ||
|
|
||
| # Security-sensitive | ||
| /SECURITY.md @KooshaPari | ||
| /.github/dependabot.yml @KooshaPari | ||
|
Comment on lines
+2
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: Severity Level: Major
|
||
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.
CODEOWNERS references wrong dependabot file extension
Medium Severity
The CODEOWNERS rule targets
/.github/dependabot.ymlbut the actual file in the repository is/.github/dependabot.yaml(.yamlextension). This pattern mismatch means the "Security-sensitive" ownership rule won't apply to the real dependabot config file. Currently masked because the/.github/rule on line 6 and the global*rule both cover it, but if ownership rules ever diverge, the intended protection for the dependabot config will silently fail.Reviewed by Cursor Bugbot for commit dbf2f32. Configure here.