fix: exclude test files from CODEOWNERS foundation approval#27919
Merged
Udit-takkar merged 3 commits intomainfrom Feb 13, 2026
Merged
fix: exclude test files from CODEOWNERS foundation approval#27919Udit-takkar merged 3 commits intomainfrom
Udit-takkar merged 3 commits intomainfrom
Conversation
Co-Authored-By: hariom@cal.com <hariombalhara@gmail.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Paragon: tests updated1 updated test generated for this PR. Updated Tests
DetailsUpdated Tests
|
Co-Authored-By: hariom@cal.com <hariombalhara@gmail.com>
Co-Authored-By: hariom@cal.com <hariombalhara@gmail.com>
Udit-takkar
approved these changes
Feb 13, 2026
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.


What does this PR do?
PRs that only modify test files currently require Foundation team approval because those files fall under CODEOWNERS-covered directories (e.g.
packages/features/bookings/lib/**/*). This adds override patterns at the end of CODEOWNERS to remove code ownership from test files, so they no longer trigger approval requirements.In GitHub CODEOWNERS, later rules take precedence. Patterns with no owners assigned effectively clear ownership for matching files.
The following test file patterns are excluded:
**/*.spec.***/*.e2e.***/*.test.***/*.integration-test.*How should this be tested?
.spec.*,.e2e.*,.test.*, or.integration-test.*) under a Foundation-owned path (e.g.packages/features/bookings/lib/)@calcom/Foundationor@calcom/Consumeras required reviewersMandatory Tasks (DO NOT REMOVE)
Human Review Checklist
@calcom/Consumerownership if a test file falls under a Consumer-owned path (e.g.packages/ui/**/*)**/*.spec.*,**/*.e2e.*,**/*.test.*,**/*.integration-test.*) match the intended file naming conventions used across the repoLink to Devin run: https://app.devin.ai/sessions/84166a44e2204df290f844112fa52a29
Requested by: @hariombalhara