From 85e5f30e0f30e13ebf6107f045f79af636468761 Mon Sep 17 00:00:00 2001 From: Gergely Gulyas Date: Mon, 29 Jun 2026 12:15:26 +0200 Subject: [PATCH] [ci] Move CODEOWNERS to .github directory and fix the layout CODEOWNERS file should be in .github directory in modern repositories. This change fixes the location and the layout of the file since GitHub reads the file frop top to bottom and applies the ownerships in this fashion. By moving the global rules to the top, it always applies to every PR and going down, it specifies the ownerships based on the modified files. --- CODEOWNERS => .github/CODEOWNERS | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename CODEOWNERS => .github/CODEOWNERS (79%) diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 79% rename from CODEOWNERS rename to .github/CODEOWNERS index 351bc63e0d..3afa0dbaf0 100644 --- a/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,14 +1,14 @@ # Lines starting with '#' are comments. # Each line is a file pattern followed by one or more owners. -# Any CODEOWNERS file modifications must be approved by repository owner. -/.github/CODEOWNERS @dkrupp - # These owners will be the default owners for everything in the repo. -* @bruntib @Vodorok +* @bruntib # Documentations. -/docs @dkrupp +/docs @bruntib @dkrupp # Frontend. -/web/server/vue-cli @gulyasgergely902 +/web/server/vue-cli @bruntib @gulyasgergely902 + +# Any CODEOWNERS file modifications must be approved by repository owner. +/.github/CODEOWNERS @dkrupp