@@ -5,8 +5,16 @@ import DESCRIPTION from "./github-triage.txt"
55const TEAM = {
66 desktop : [ "adamdotdevin" , "iamdavidhill" , "Brendonovich" , "nexxeln" ] ,
77 zen : [ "fwang" , "MrMushrooooom" ] ,
8- tui : [ "thdxr" , "kommander" , "rekram1-node" ] ,
9- core : [ "thdxr" , "rekram1-node" , "jlongster" ] ,
8+ tui : [
9+ "thdxr" ,
10+ "kommander" ,
11+ // "rekram1-node" (on vacation)
12+ ] ,
13+ core : [
14+ "thdxr" ,
15+ // "rekram1-node", (on vacation)
16+ "jlongster" ,
17+ ] ,
1018 docs : [ "R44VC0RP" ] ,
1119 windows : [ "Hona" ] ,
1220} as const
@@ -42,10 +50,7 @@ async function githubFetch(endpoint: string, options: RequestInit = {}) {
4250export default tool ( {
4351 description : DESCRIPTION ,
4452 args : {
45- assignee : tool . schema
46- . enum ( ASSIGNEES as [ string , ...string [ ] ] )
47- . describe ( "The username of the assignee" )
48- . default ( "rekram1-node" ) ,
53+ assignee : tool . schema . enum ( ASSIGNEES as [ string , ...string [ ] ] ) . describe ( "The username of the assignee" ) ,
4954 labels : tool . schema
5055 . array ( tool . schema . enum ( [ "nix" , "opentui" , "perf" , "web" , "desktop" , "zen" , "docs" , "windows" , "core" ] ) )
5156 . describe ( "The labels(s) to add to the issue" )
@@ -68,7 +73,8 @@ export default tool({
6873 results . push ( "Dropped label: nix (issue does not mention nix)" )
6974 }
7075
71- const assignee = nix ? "rekram1-node" : web ? pick ( TEAM . desktop ) : args . assignee
76+ // const assignee = nix ? "rekram1-node" : web ? pick(TEAM.desktop) : args.assignee
77+ const assignee = web ? pick ( TEAM . desktop ) : args . assignee
7278
7379 if ( labels . includes ( "zen" ) && ! zen ) {
7480 throw new Error ( "Only add the zen label when issue title/body contains 'zen'" )
0 commit comments