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
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# Fallback owner.
# These are the default owners for everything in the repo, unless a later match
# takes precedence.
/{src,tests,docs,dist}/ @frequenz-floss/api-dispatch-team @frequenz-floss/python-sdk-team
* @frequenz-floss/api-dispatch-team @frequenz-floss/python-sdk-team
Copy link

Copilot AI Nov 10, 2025

Choose a reason for hiding this comment

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

The wildcard pattern * only matches files in the root directory, not files in subdirectories. To match all files recursively throughout the repository, use ** or */** instead. If the intention is to maintain the previous behavior of covering src, tests, docs, and dist directories, the current pattern will not achieve this.

Suggested change
* @frequenz-floss/api-dispatch-team @frequenz-floss/python-sdk-team
** @frequenz-floss/api-dispatch-team @frequenz-floss/python-sdk-team

Copilot uses AI. Check for mistakes.