diff --git a/src/config/groups.ts b/src/config/groups.ts index 2417b6f0..90898bcf 100644 --- a/src/config/groups.ts +++ b/src/config/groups.ts @@ -150,6 +150,12 @@ export const GROUPS = defineGroups([ memberOf: ['working-groups'], onlyOnPlatforms: ['github'], }, + { + name: 'conformance-testing-wg', + description: 'Conformance Testing Working Group', + memberOf: ['working-groups'], + onlyOnPlatforms: ['github'], + }, // Interest Groups { diff --git a/src/config/repoAccess.ts b/src/config/repoAccess.ts index 4af8c665..7ed61201 100644 --- a/src/config/repoAccess.ts +++ b/src/config/repoAccess.ts @@ -324,6 +324,18 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [ { username: 'nitsanh', permission: 'pull' }, ], }, + { + repository: 'ext-auth', + teams: [ + { team: 'auth-wg', permission: 'admin' }, + ], + }, + { + repository: 'conformance', + teams: [ + { team: 'conformance-testing-wg', permission: 'push' }, + ], + }, ]; // GitHub Projects V2 permissions are NOT managed by Pulumi - no support yet diff --git a/src/config/users.ts b/src/config/users.ts index 873c9c07..982a505b 100644 --- a/src/config/users.ts +++ b/src/config/users.ts @@ -218,7 +218,7 @@ export const MEMBERS: readonly Member[] = [ }, { github: 'pcarleton', - memberOf: ['core-maintainers', 'python-sdk', 'python-sdk-auth', 'typescript-sdk', 'typescript-sdk-auth'], + memberOf: ['core-maintainers', 'python-sdk', 'python-sdk-auth', 'typescript-sdk', 'typescript-sdk-auth', 'auth-wg', 'conformance-testing-wg'], }, { github: 'petery-ant',