From 326e2c6003c220d5e195487b5e0102a956dbda9f Mon Sep 17 00:00:00 2001 From: Eli Polonsky Date: Thu, 21 Nov 2024 23:17:50 +0200 Subject: [PATCH] chore: codeowners (#32194) Adding a CODEOWNERS file to so that we can require approval from specific teams based on the changed code. > See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-and-branch-protection ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: GZ --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000000..954b5c54539a3 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +/packages/aws-cdk/ @aws/aws-cdk-core-team +/packages/@aws-cdk-testing/cli-integ/ @aws/aws-cdk-core-team +/packages/aws-cdk-lib/core/ @aws/aws-cdk-core-team +/packages/@aws-cdk/cli-lib-alpha/ @aws/aws-cdk-core-team \ No newline at end of file