From 55acd0fdcafa582f4e37916b327b783d5c10eb19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Waldemar=20=C5=BBurowski?= <45210402+wzur-r3@users.noreply.github.com> Date: Tue, 30 Apr 2024 16:57:02 +0100 Subject: [PATCH] ES-1978: corrected syntax in CODEOWNERS file (#236) * `.ci/*` only catches files directly in `.ci` folder, any subfolders are not affected * `/.ci/` correctly sets ownership of all files in that folder to Infrastructure and Release team * same for `.gradle` folder * `/.github` to be owned by Infra & Release, but CODEOWNERS file still are with Rest --- .github/CODEOWNERS | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d54c5b4..2f00ac8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,7 +1,9 @@ * @corda/rest -# Build scripts should be audited by BLT -*.gradle @corda/infrastructure-release -gradle.properties @corda/corda5-team-leads -Jenkinsfile @corda/infrastructure-release -.ci/* @corda/infrastructure-release -gradle/* @corda/infrastructure-release +# Build scripts should be audited by Infrastructure & Release team +*.gradle @corda/infrastructure-release +gradle.properties @corda/corda5-team-leads +Jenkinsfile @corda/infrastructure-release +/.ci/ @corda/infrastructure-release +/.github/ @corda/infrastructure-release +/.github/CODEOWNERS @corda/rest # keep CODEOWNERS owned by the Rest team +/gradle/ @corda/infrastructure-release