Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/config/repoAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
teams: [
{ team: 'typescript-sdk', permission: 'admin' },
{ team: 'typescript-sdk-auth', permission: 'admin' },
{ team: 'typescript-sdk-collaborators', permission: 'push' },
],
},
{
Expand Down
1 change: 1 addition & 0 deletions src/config/roleIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const ROLE_IDS = {
SWIFT_SDK: 'swift-sdk',
TYPESCRIPT_SDK: 'typescript-sdk',
TYPESCRIPT_SDK_AUTH: 'typescript-sdk-auth', // GitHub only (CODEOWNERS)
TYPESCRIPT_SDK_COLLABORATORS: 'typescript-sdk-collaborators', // GitHub only

// ===================
// Working Groups
Expand Down
6 changes: 6 additions & 0 deletions src/config/roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,12 @@ export const ROLES: readonly Role[] = [
github: { team: 'typescript-sdk-auth', parent: ROLE_IDS.TYPESCRIPT_SDK },
// GitHub only - for CODEOWNERS
},
{
id: ROLE_IDS.TYPESCRIPT_SDK_COLLABORATORS,
description: 'TypeScript SDK collaborators',
github: { team: 'typescript-sdk-collaborators', parent: ROLE_IDS.TYPESCRIPT_SDK },
// GitHub only
},

// ===================
// Working Groups
Expand Down
4 changes: 4 additions & 0 deletions src/config/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,10 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.TRANSPORT_WG,
],
},
{
github: 'poteat',
memberOf: [ROLE_IDS.TYPESCRIPT_SDK_COLLABORATORS],
},
{
github: 'pronskiy',
memberOf: [ROLE_IDS.PHP_SDK],
Expand Down
Loading