fix(codeowners): move AI conversation rules after endpoints catch-all#107664
Merged
vgrozdanic merged 1 commit intomasterfrom Feb 5, 2026
Merged
fix(codeowners): move AI conversation rules after endpoints catch-all#107664vgrozdanic merged 1 commit intomasterfrom
vgrozdanic merged 1 commit intomasterfrom
Conversation
GitHub CODEOWNERS uses last-matching-pattern-wins precedence. The AI conversation endpoint rules were being overridden by the catch-all `/src/sentry/api/endpoints/` rule that came later in the file. Move the AI conversation rules to a dedicated section after the Issues block, ensuring they come after the endpoints catch-all and correctly assign @getsentry/telemetry-experience as the owner.
shellmayr
approved these changes
Feb 5, 2026
jaydgoss
pushed a commit
that referenced
this pull request
Feb 12, 2026
…#107664) ## Summary - Fix CODEOWNERS precedence for AI conversation endpoints - Move rules to a dedicated section after the `/src/sentry/api/endpoints/` catch-all - PRs touching `organization_ai_conversation*.py` will now correctly tag `@getsentry/telemetry-experience` ## Problem GitHub CODEOWNERS uses **last matching pattern wins** precedence. The AI conversation endpoint rules were at line 507-509, but the catch-all `/src/sentry/api/endpoints/` rule at line 554 was overriding them, incorrectly assigning `@getsentry/issue-workflow`.
dcramer
pushed a commit
that referenced
this pull request
Feb 17, 2026
…#107664) ## Summary - Fix CODEOWNERS precedence for AI conversation endpoints - Move rules to a dedicated section after the `/src/sentry/api/endpoints/` catch-all - PRs touching `organization_ai_conversation*.py` will now correctly tag `@getsentry/telemetry-experience` ## Problem GitHub CODEOWNERS uses **last matching pattern wins** precedence. The AI conversation endpoint rules were at line 507-509, but the catch-all `/src/sentry/api/endpoints/` rule at line 554 was overriding them, incorrectly assigning `@getsentry/issue-workflow`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/src/sentry/api/endpoints/catch-allorganization_ai_conversation*.pywill now correctly tag@getsentry/telemetry-experienceProblem
GitHub CODEOWNERS uses last matching pattern wins precedence. The AI conversation endpoint rules were at line 507-509, but the catch-all
/src/sentry/api/endpoints/rule at line 554 was overriding them, incorrectly assigning@getsentry/issue-workflow.