File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,12 +26,19 @@ sortedRoles.forEach((role: Role) => {
2626 }
2727 }
2828
29- teams [ role . github . team ] = new github . Team ( role . github . team , {
30- name : role . github . team ,
31- description : role . description + ' \n(Managed by github.com/modelcontextprotocol/access)' ,
32- privacy : 'closed' ,
33- parentTeamId,
34- } ) ;
29+ // TODO: Remove this import after first successful deploy
30+ const importId = role . github . team === 'docs-maintainers' ? '14435867' : undefined ;
31+
32+ teams [ role . github . team ] = new github . Team (
33+ role . github . team ,
34+ {
35+ name : role . github . team ,
36+ description : role . description + ' \n(Managed by github.com/modelcontextprotocol/access)' ,
37+ privacy : 'closed' ,
38+ parentTeamId,
39+ } ,
40+ importId ? { import : importId } : undefined
41+ ) ;
3542} ) ;
3643
3744// Create team memberships
You can’t perform that action at this time.
0 commit comments