From 432b20f1b44dbf89de3cd0d3d58b08cc53e3f7c6 Mon Sep 17 00:00:00 2001 From: darrenge Date: Thu, 25 Apr 2024 12:41:13 -0700 Subject: [PATCH 1/2] Add CODEOWNER as part of security best practices by GitHub. For now, it is recommended to at least have work flows --- .github/CODEOWNERS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..5909bb051c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# Recommended by GitHub best practices to have a Code Owner defined especially for .GitHub folder +# NOTE: Order is important; the last matching pattern takes the most precedence. + +# For Workflows used by GitHub Actions +/github/workflows/ @darrenge From a45601e35532f14be8afeb681c61a62082ca5c80 Mon Sep 17 00:00:00 2001 From: darrenge Date: Thu, 25 Apr 2024 13:07:12 -0700 Subject: [PATCH 2/2] Typo ... missing a "." from beginning. Should be .github and not just github --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5909bb051c..ba2dfe5fd7 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,4 +2,4 @@ # NOTE: Order is important; the last matching pattern takes the most precedence. # For Workflows used by GitHub Actions -/github/workflows/ @darrenge +/.github/workflows/ @darrenge