Skip to content

Commit

Permalink
feat: Add CODEOWNERS file
Browse files Browse the repository at this point in the history
Add CODEOWNERS file to define individuals or teams
that are responsible for code in a repository.

Code owners will be automatically requested for review when
someone opens a pull request that modifies code that they own.

Signed-off-by: Chirag Shilwant <[email protected]>
  • Loading branch information
cshilwant committed Nov 1, 2024
1 parent 8009938 commit 4e8e106
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence, all below
# owners will be requested for review when someone opens a pull request.

* @cshilwant @StaticRocket @praneethbajjuri @uditkumarti

# Order is important; the last matching pattern takes the most
# precedence.

# In this case, below team owns any files in all the below
# mentioned directories in the root of our repository
# and any of its subdirectories.

/source/buildroot/ @TexasInstruments/sitara-mpu-linux-sdk
/source/debian/ @TexasInstruments/sitara-mpu-linux-sdk
/source/system/ @TexasInstruments/sitara-mpu-linux-sdk
/source/linux/Overview/ @TexasInstruments/sitara-mpu-linux-sdk

# In this example, below owners own any file in the
# `/source/linux/Foundational_Components`directory in
# the root of your repository except for the other mentioned
# subdirectories, as these subdirectories has its own set of owners

/source/linux/Foundational_Components/ @praneethbajjuri @uditkumarti @r-vignesh

/source/linux/Foundational_Components/Power_Management/ @praneethbajjuri @DhruvaG2000
/source/linux/Foundational_Components/Tools/ @TexasInstruments/sitara-mpu-linux-sdk
/source/linux/Foundational_Components/Hypervisor/ @TexasInstruments/sitara-mpu-linux-sdk
/source/linux/Foundational_Components/Graphics/ @praneethbajjuri @uditkumarti @StaticRocket

0 comments on commit 4e8e106

Please sign in to comment.