From 0c5abe0968304b98d1eef259a47006ae3de9e687 Mon Sep 17 00:00:00 2001 From: Muhammad Rayan Asim Date: Sat, 14 Oct 2023 19:17:14 +0500 Subject: [PATCH] add new file for code owners Signed-off-by: Muhammad Rayan Asim --- CODEOWNERS_updated | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 CODEOWNERS_updated diff --git a/CODEOWNERS_updated b/CODEOWNERS_updated new file mode 100644 index 0000000..058fbf1 --- /dev/null +++ b/CODEOWNERS_updated @@ -0,0 +1,22 @@ +# CODEOWNERS File + +# This file is used to specify who the "owner" is for different parts of the repository. +# The owners will be automatically requested for review when a pull request changes any owned files. + +# Syntax: pattern owner1 owner2 ... + +# To make a user or team an owner for the entire repo, use '*' +* @mrayanasim09 @drik493 + +# To specify owners for specific directories or files, you can do the following: + +# Frontend related changes +/frontend/ @mrayanasim09 + +# Backend related changes +/backend/ @drik493 + +# Documentation related changes +/docs/ @mrayanasim09 @drik493 + +# Please modify the above usernames and team names to match your project's collaborators.