Skip to content

Commit f1e481b

Browse files
committed
Rename auth-wg to auth-maintainers
1 parent 850ba72 commit f1e481b

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

src/config/repoAccess.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
1818
repository: 'docs',
1919
users: [{ username: 'jspahrsummers', permission: 'admin' }],
2020
teams: [
21-
{ team: 'auth-wg', permission: 'push' },
21+
{ team: 'auth-maintainers', permission: 'push' },
2222
{ team: 'core-maintainers', permission: 'maintain' },
2323
{ team: 'csharp-sdk', permission: 'push' },
2424
{ team: 'docs-maintainers', permission: 'push' },
@@ -48,7 +48,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
4848
repository: '.github',
4949
users: [{ username: 'jspahrsummers', permission: 'admin' }],
5050
teams: [
51-
{ team: 'auth-wg', permission: 'triage' },
51+
{ team: 'auth-maintainers', permission: 'triage' },
5252
{ team: 'core-maintainers', permission: 'maintain' },
5353
{ team: 'csharp-sdk', permission: 'triage' },
5454
{ team: 'docs-maintainers', permission: 'triage' },
@@ -84,7 +84,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
8484
],
8585
teams: [
8686
{ team: 'inspector-maintainers', permission: 'push' },
87-
{ team: 'auth-wg', permission: 'push' },
87+
{ team: 'auth-maintainers', permission: 'push' },
8888
{ team: 'core-maintainers', permission: 'maintain' },
8989
{ team: 'csharp-sdk', permission: 'push' },
9090
{ team: 'go-sdk', permission: 'push' },
@@ -110,7 +110,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
110110
repository: 'modelcontextprotocol',
111111
users: [{ username: 'jspahrsummers', permission: 'admin' }],
112112
teams: [
113-
{ team: 'auth-wg', permission: 'push' },
113+
{ team: 'auth-maintainers', permission: 'push' },
114114
{ team: 'core-maintainers', permission: 'maintain' },
115115
{ team: 'csharp-sdk', permission: 'triage' },
116116
{ team: 'docs-maintainers', permission: 'push' },
@@ -140,7 +140,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
140140
repository: 'quickstart-resources',
141141
users: [{ username: 'jspahrsummers', permission: 'admin' }],
142142
teams: [
143-
{ team: 'auth-wg', permission: 'push' },
143+
{ team: 'auth-maintainers', permission: 'push' },
144144
{ team: 'core-maintainers', permission: 'maintain' },
145145
{ team: 'csharp-sdk', permission: 'push' },
146146
{ team: 'docs-maintainers', permission: 'push' },
@@ -173,7 +173,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
173173
{ username: 'slimslenderslacks', permission: 'push' },
174174
],
175175
teams: [
176-
{ team: 'auth-wg', permission: 'push' },
176+
{ team: 'auth-maintainers', permission: 'push' },
177177
{ team: 'core-maintainers', permission: 'admin' },
178178
{ team: 'csharp-sdk', permission: 'push' },
179179
{ team: 'docs-maintainers', permission: 'push' },
@@ -306,7 +306,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [
306306
},
307307
{
308308
repository: 'ext-auth',
309-
teams: [{ team: 'auth-wg', permission: 'admin' }],
309+
teams: [{ team: 'auth-maintainers', permission: 'admin' }],
310310
},
311311
{
312312
repository: 'ext-apps',

src/config/roleIds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const ROLE_IDS = {
4646
// Working Groups
4747
// ===================
4848
WORKING_GROUPS: 'working-groups',
49-
AUTH_WG: 'auth-wg',
49+
AUTH_MAINTAINERS: 'auth-maintainers',
5050
SECURITY_WG: 'security-wg',
5151
SERVER_IDENTITY_WG: 'server-identity-wg',
5252
TRANSPORT_WG: 'transport-wg',

src/config/roles.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ export const ROLES: readonly Role[] = [
238238
// No discord - organizational container
239239
},
240240
{
241-
id: ROLE_IDS.AUTH_WG,
242-
description: 'Authentication Working Group',
243-
github: { team: 'auth-wg', parent: ROLE_IDS.WORKING_GROUPS },
241+
id: ROLE_IDS.AUTH_MAINTAINERS,
242+
description: 'Auth Maintainers',
243+
github: { team: 'auth-maintainers', parent: ROLE_IDS.WORKING_GROUPS },
244244
// See AUTH_IG for Discord role
245245
},
246246
{
@@ -287,7 +287,7 @@ export const ROLES: readonly Role[] = [
287287
id: ROLE_IDS.AUTH_IG,
288288
description: 'Auth Interest Group',
289289
discord: { role: 'auth interest group (synced)' },
290-
// Discord only - separate from AUTH_WG which is GitHub
290+
// Discord only - separate from AUTH_MAINTAINERS which is GitHub
291291
},
292292
{
293293
id: ROLE_IDS.CLIENT_IMPLEMENTOR_IG,

src/config/users.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const MEMBERS: readonly Member[] = [
1515
{
1616
github: 'aaronpk',
1717
discord: '324624369428987905',
18-
memberOf: [ROLE_IDS.AUTH_WG, ROLE_IDS.MAINTAINERS],
18+
memberOf: [ROLE_IDS.AUTH_MAINTAINERS, ROLE_IDS.MAINTAINERS],
1919
},
2020
{
2121
github: 'alexhancock',
@@ -109,7 +109,7 @@ export const MEMBERS: readonly Member[] = [
109109
{
110110
github: 'D-McAdams',
111111
discord: '1364696680980545697',
112-
memberOf: [ROLE_IDS.AUTH_WG],
112+
memberOf: [ROLE_IDS.AUTH_MAINTAINERS],
113113
},
114114
{
115115
github: 'devcrocod',
@@ -124,7 +124,7 @@ export const MEMBERS: readonly Member[] = [
124124
{
125125
github: 'dsp',
126126
memberOf: [
127-
ROLE_IDS.AUTH_WG,
127+
ROLE_IDS.AUTH_MAINTAINERS,
128128
ROLE_IDS.LEAD_MAINTAINERS,
129129
ROLE_IDS.CORE_MAINTAINERS,
130130
ROLE_IDS.DOCS_MAINTAINERS,
@@ -143,7 +143,7 @@ export const MEMBERS: readonly Member[] = [
143143
144144
discord: '166107790262272000',
145145
memberOf: [
146-
ROLE_IDS.AUTH_WG,
146+
ROLE_IDS.AUTH_MAINTAINERS,
147147
ROLE_IDS.LEAD_MAINTAINERS,
148148
ROLE_IDS.CORE_MAINTAINERS,
149149
ROLE_IDS.DOCS_MAINTAINERS,
@@ -286,7 +286,7 @@ export const MEMBERS: readonly Member[] = [
286286
github: 'localden',
287287
discord: '1351224014143754260',
288288
memberOf: [
289-
ROLE_IDS.AUTH_WG,
289+
ROLE_IDS.AUTH_MAINTAINERS,
290290
ROLE_IDS.CORE_MAINTAINERS,
291291
ROLE_IDS.CSHARP_SDK,
292292
ROLE_IDS.DOCS_MAINTAINERS,
@@ -402,7 +402,7 @@ export const MEMBERS: readonly Member[] = [
402402
ROLE_IDS.PYTHON_SDK_AUTH,
403403
ROLE_IDS.TYPESCRIPT_SDK,
404404
ROLE_IDS.TYPESCRIPT_SDK_AUTH,
405-
ROLE_IDS.AUTH_WG,
405+
ROLE_IDS.AUTH_MAINTAINERS,
406406
],
407407
},
408408
{

0 commit comments

Comments
 (0)