From 3ba3accfaad3749e6c674c3d3747636bc4845a7b Mon Sep 17 00:00:00 2001 From: Mukesh Choudhari Date: Wed, 20 Nov 2024 16:57:18 +0530 Subject: [PATCH] Add CODEOWNERS file in CODEOWNERS Add CODEOWNERS file to define code ownership rules. This PR adds a CODEOWNERS file in CODEOWNERS to help manage code review assignments and maintain clear ownership of different parts of the codebase. --- CODEOWNERS | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index 8b137891..04cf8f2a 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1,13 @@ +# Each line is a file pattern followed by one or more owners. +# More on CODEOWNERS files: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# Default owner +* @hashicorp/team-ip-compliance + +# Add override rules below. Each line is a file/folder pattern followed by one or more owners. +# Being an owner means those groups or individuals will be added as reviewers to PRs affecting +# those areas of the code. +# Examples: +# /docs/ @docs-team +# *.js @js-team +# *.go @go-team