CODEOWNERS-Based Team Assignment
Assign crashes to the right team automatically from your repository CODEOWNERS file. How name matching and specificity-based paths work.
How It Works
CODEOWNERS File Example
# Each line maps a path pattern to a team
# The format is: <path> <team>
# Networking layer owned by the platform team
/Sources/Networking/ @org/platform-team
# Authentication module owned by the identity team
/Sources/Auth/ @org/identity-team
# Checkout and payments owned by the commerce team
/Sources/Checkout/ @org/commerce-team
/Sources/Payments/ @org/commerce-team
# Everything under the analytics module
/Sources/Analytics/ @org/data-teamSpecificity-Based Matching
How Specificity Is Calculated
Rule token
Segments
Specificity
Example
Team
Rule
Tie-Breaking
How It Works Across Platforms
Platform
Field
Separator
Example
How to Test
Last updated