From 47ad8ad6b05beae1502b502c8d04b700a6862402 Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Thu, 24 Feb 2022 14:26:35 +0000 Subject: [PATCH] updated CODEOWNERS --- .github/CODEOWNERS | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 64150021..4a631de7 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -17,12 +17,22 @@ # Good in theory, to alert on PR changes to these code paths, but for public repos which may be forked and run .github/workflows/fork-update.yaml, this will result in a lot of spam +# Tips: +# # * includes changes under .github/ +# dir/* only matches first level file changes but doesn't recurse +# dir/ recurses # -# paths are case sensitive +# - CODEOWNERS in base branch of PR determines review request +# - paths are case sensitive +# - last match wins, use * at top for overall owner then override with more specific teams -#* @harisekhon # username or email address -#* @myorg/platform-engineering # team based is the way to go - team must have Write access to the repo regardless of if individuals have access -#* @myorg/devops -#k8s @myorg/devops -#src/* @myorg/developers +#* @harisekhon # username or email address +#* @myorg/platform-engineering # team based is the way to go - team must have Write access to the repo regardless of if individuals have access +#* @myorg/devops +#k8s @myorg/devops @myorg/sre-team +#apps/ @myorg/developers +#apps/dir2 # ignores dir2 as no owner/team specified on this line +#src/ @myorg/developers +#docs/ docs@example.com +#.github/workflows @ci-cd-team