Skip to content
Open
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/roleIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export const ROLE_IDS = {
// Email Groups (Google only)
// ===================
ANTITRUST: 'antitrust',
APPEALS: 'appeals',
CATCH_ALL: 'catch-all',
} as const;

Expand Down
6 changes: 6 additions & 0 deletions src/config/roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,12 @@ export const ROLES: readonly Role[] = [
google: { group: 'antitrust', isEmailGroup: true },
// Google only
},
{
id: ROLE_IDS.APPEALS,
description: 'Code of Conduct ban appeals inbox',
google: { group: 'appeals', isEmailGroup: true },
// Google only
},
{
id: ROLE_IDS.CATCH_ALL,
description: 'Catch-all email group',
Expand Down
8 changes: 8 additions & 0 deletions src/config/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.MODERATORS,
ROLE_IDS.SKILLS_OVER_MCP_IG,
ROLE_IDS.WORKING_GROUPS,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -235,6 +236,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.MODERATORS,
ROLE_IDS.SERVER_CARD_WG,
ROLE_IDS.AGENTS_WG,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -271,6 +273,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.MAINTAINERS,
ROLE_IDS.MODERATORS,
ROLE_IDS.TRANSPORT_WG,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -374,6 +377,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.RUBY_SDK,
ROLE_IDS.MCP_APPS_SDK,
ROLE_IDS.TRANSPORT_WG,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -458,6 +462,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.SECURITY_WG,
ROLE_IDS.TRANSPORT_WG,
ROLE_IDS.TYPESCRIPT_SDK,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -583,6 +588,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.REFERENCE_SERVERS_MAINTAINERS,
ROLE_IDS.SKILLS_OVER_MCP_IG,
ROLE_IDS.WORKING_GROUPS,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -618,6 +624,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.MODERATORS,
ROLE_IDS.SKILLS_OVER_MCP_IG,
ROLE_IDS.INTERCEPTORS_WG,
ROLE_IDS.APPEALS,
],
},
{
Expand Down Expand Up @@ -753,6 +760,7 @@ export const MEMBERS: readonly Member[] = [
ROLE_IDS.REGISTRY_MAINTAINERS,
ROLE_IDS.ADMINISTRATORS,
ROLE_IDS.SERVER_CARD_WG,
ROLE_IDS.APPEALS,
],
},
{
Expand Down
Loading