Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* @FieldControl/shared

/.github/ @FieldControl/codeowners
Comment on lines +1 to +3
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The order of rules in CODEOWNERS files matters. More specific patterns should be placed before general patterns because GitHub uses the last matching pattern. Currently, the general wildcard pattern * @FieldControl/shared appears first, which means it will override the more specific /.github/ @FieldControl/codeowners rule. This means all files, including those in .github/, will be owned by @FieldControl/shared instead of @FieldControl/codeowners.

The rules should be reordered so that /.github/ @FieldControl/codeowners comes before * @FieldControl/shared.

Suggested change
* @FieldControl/shared
/.github/ @FieldControl/codeowners
/.github/ @FieldControl/codeowners
* @FieldControl/shared

Copilot uses AI. Check for mistakes.
Loading