Skip to content
Draft
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
5 changes: 4 additions & 1 deletion src/config/repoAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
},
{
repository: 'registry',
teams: [{ team: 'registry-wg', permission: 'admin' }],
teams: [
{ team: 'registry-wg', permission: 'admin' },
{ team: 'registry-wg-collaborators', permission: 'push' },
],
},
{
repository: 'static',
Expand Down
1 change: 1 addition & 0 deletions src/config/roleIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const ROLE_IDS = {
MCPB_MAINTAINERS: 'mcpb-maintainers',
REFERENCE_SERVERS_MAINTAINERS: 'reference-servers-maintainers',
REGISTRY_MAINTAINERS: 'registry-maintainers',
REGISTRY_WG_COLLABORATORS: 'registry-wg-collaborators', // GitHub only
USE_MCP_MAINTAINERS: 'use-mcp-maintainers',

// ===================
Expand Down
5 changes: 5 additions & 0 deletions src/config/roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ export const ROLES: readonly Role[] = [
discord: { role: 'registry maintainers (synced)' },
google: { group: 'registry-wg', provisionUser: true },
},
{
id: ROLE_IDS.REGISTRY_WG_COLLABORATORS,
description: 'Registry working group collaborators',
github: { team: 'registry-wg-collaborators', parent: ROLE_IDS.REGISTRY_MAINTAINERS },
},
{
id: ROLE_IDS.USE_MCP_MAINTAINERS,
description: 'use-mcp maintainers',
Expand Down
12 changes: 10 additions & 2 deletions src/config/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export const MEMBERS: readonly Member[] = [
lastName: 'Jones',
googleEmailPrefix: 'adam',
existingGWSUser: true,
memberOf: [ROLE_IDS.MCPB_MAINTAINERS, ROLE_IDS.REGISTRY_MAINTAINERS],
memberOf: [ROLE_IDS.MCPB_MAINTAINERS],
},
{
github: 'dsp',
Expand Down Expand Up @@ -641,6 +641,13 @@ export const MEMBERS: readonly Member[] = [
lastName: 'Senthilnathan',
memberOf: [ROLE_IDS.CSHARP_SDK],
},
{
github: 'pree-dew',
discord: '1379733751315173376',
firstName: 'Preeti',
lastName: 'Dewani',
memberOf: [ROLE_IDS.REGISTRY_WG_COLLABORATORS],
},
{
github: 'pronskiy',
memberOf: [ROLE_IDS.PHP_SDK],
Expand Down Expand Up @@ -754,7 +761,8 @@ export const MEMBERS: readonly Member[] = [
lastName: 'Padilla',
googleEmailPrefix: 'toby',
existingGWSUser: true,
memberOf: [ROLE_IDS.MAINTAINERS, ROLE_IDS.REGISTRY_MAINTAINERS],
// Emeritus maintainer of the Registry
memberOf: [],
},
{
github: 'topherbullock',
Expand Down
Loading