From 7ab56e96d5b1f8d3f83b5adc81bd99647cc0c6b4 Mon Sep 17 00:00:00 2001 From: david-perez Date: Thu, 4 Aug 2022 00:20:13 +0200 Subject: [PATCH] Allow both teams to release new smithy-rs versions independently (#1618) This commit modifies the `CODEOWNERS` to allow both `@awslabs/rust-sdk-owners` and `@awslabs/smithy-rs-server` teams to release new versions of smithy-rs independently, without requiring peer approval from the other team. Syntax and semantics of `CODEOWNERS`: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners --- CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index 883fab0f7..bf2200a95 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -3,3 +3,6 @@ /codegen-server-test/ @awslabs/smithy-rs-server /rust-runtime/aws-smithy-http-server/ @awslabs/smithy-rs-server /rust-runtime/aws-smithy-http-server-python/ @awslabs/smithy-rs-server + +# Either team is able to modify this file to release new smithy-rs versions. +gradle.properties @awslabs/rust-sdk-owners @awslabs/smithy-rs-server -- GitLab