File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31166,7 +31166,7 @@ function msgBelongsTo(msg) {
3116631166 let ticketMeta = msg.match(/^(\w+\/\w+-?\w+)#(\d{1,6})/);
3116731167 // ticketMeta[1] = board
3116831168 // ticketMeta[2] = ticket ID
31169- return new Ticket(ticketMeta[1], ticketMeta[2])
31169+ return new Ticket(ticketMeta[1].trim() , ticketMeta[2].trim() )
3117031170 }
3117131171 return 'Unknown repo';
3117231172}
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ function msgBelongsTo(msg) {
7373 let ticketMeta = msg . match ( / ^ ( \w + \/ \w + - ? \w + ) # ( \d { 1 , 6 } ) / ) ;
7474 // ticketMeta[1] = board
7575 // ticketMeta[2] = ticket ID
76- return new Ticket ( ticketMeta [ 1 ] , ticketMeta [ 2 ] )
76+ return new Ticket ( ticketMeta [ 1 ] . trim ( ) , ticketMeta [ 2 ] . trim ( ) )
7777 }
7878 return 'Unknown repo' ;
7979}
Original file line number Diff line number Diff line change 11{
22 "dependencies" : {
33 "@actions/core" : " ^1.10.1" ,
4- "@actions/github" : " ^6.0.0"
4+ "@actions/github" : " ^6.0.0" ,
5+ "graphiql" : " ^3.8.3" ,
6+ "graphql" : " ^16.11.0" ,
7+ "react" : " ^18.3.1" ,
8+ "react-dom" : " ^18.3.1"
59 }
610}
You can’t perform that action at this time.
0 commit comments