From d03edb2f5f1fec086a11bb5c0ed2a684fd826bc9 Mon Sep 17 00:00:00 2001 From: Jeff Handley Date: Thu, 19 Mar 2026 17:08:30 -0700 Subject: [PATCH] Upgrade csharp-sdk team permission to maintain on csharp-sdk repo The csharp-sdk team only had push permission, which was insufficient for members to push to protected branches, edit/assign issues, or have their PR approvals count toward merge requirements. Upgrading to maintain grants these capabilities without admin access. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/config/repoAccess.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/repoAccess.ts b/src/config/repoAccess.ts index bb1e54b..fba11d4 100644 --- a/src/config/repoAccess.ts +++ b/src/config/repoAccess.ts @@ -186,7 +186,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [ repository: 'csharp-sdk', teams: [ { team: 'csharp-sdk-admin', permission: 'admin' }, - { team: 'csharp-sdk', permission: 'push' }, + { team: 'csharp-sdk', permission: 'maintain' }, ], users: [{ username: 'PederHP', permission: 'triage' }], },