From 4e8e1065b7eb05cbf792f59854684d1f641e6152 Mon Sep 17 00:00:00 2001 From: Chirag Shilwant Date: Fri, 1 Nov 2024 07:27:47 +0530 Subject: [PATCH] feat: Add CODEOWNERS file 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 --- .github/CODEOWNERS | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..46e77f319 --- /dev/null +++ b/.github/CODEOWNERS @@ -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