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
1 change: 1 addition & 0 deletions src/config/repoAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
{ team: 'lead-maintainers', permission: 'maintain' },
{ team: 'core-maintainers', permission: 'admin' },
{ team: 'steering-committee', permission: 'maintain' },
{ team: 'maintainers', permission: 'pull' },
],
users: [{ username: 'sambhav', permission: 'admin' }],
},
Expand Down
2 changes: 2 additions & 0 deletions src/config/roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ export const ROLES: readonly Role[] = [
{
id: ROLE_IDS.MAINTAINERS,
description: 'General maintainers',
// No parent team: must not inherit steering-committee repo permissions
github: { team: 'maintainers' },
discord: { role: 'maintainers (synced)' },
// GWS user accounts are opt-in: maintainers add firstName/lastName/googleEmailPrefix
// to their entry in users.ts via PR to get an @modelcontextprotocol.io account
Expand Down
Loading