File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -334,13 +334,17 @@ export default class GithubHelper {
334334 const stateChange =
335335 ( / S t a t u s c h a n g e d t o .* / i. test ( noteBody ) &&
336336 ! / S t a t u s c h a n g e d t o c l o s e d b y c o m m i t .* / i. test ( noteBody ) ) ||
337- / c h a n g e d m i l e s t o n e t o .* / i. test ( noteBody ) ||
338- / M i l e s t o n e c h a n g e d t o .* / i. test ( noteBody ) ||
339- / R e a s s i g n e d t o / i. test ( noteBody ) ||
340- / a d d e d .* l a b e l s / i. test ( noteBody ) ||
341- / A d d e d ~ .* l a b e l / i. test ( noteBody ) ||
342- / r e m o v e d ~ .* l a b e l / i. test ( noteBody ) ||
343- / m e n t i o n e d i n i s s u e .* / i. test ( noteBody ) ;
337+ / ^ c h a n g e d m i l e s t o n e t o .* / i. test ( noteBody ) ||
338+ / ^ M i l e s t o n e c h a n g e d t o .* / i. test ( noteBody ) ||
339+ / ^ ( R e ) * a s s i g n e d t o / i. test ( noteBody ) ||
340+ / ^ a d d e d .* l a b e l s / i. test ( noteBody ) ||
341+ / ^ A d d e d ~ .* l a b e l / i. test ( noteBody ) ||
342+ / ^ r e m o v e d ~ .* l a b e l / i. test ( noteBody ) ||
343+ / ^ m e n t i o n e d i n i s s u e # \d + .* / i. test ( noteBody ) ||
344+ // /^marked this issue as related to #\d+/i.test(noteBody) ||
345+ / ^ m e n t i o n e d i n m e r g e r e q u e s t ! \d + / i. test ( noteBody ) ||
346+ / ^ c h a n g e d t h e d e s c r i p t i o n .* / i. test ( noteBody ) ||
347+ / ^ c h a n g e d t i t l e f r o m .* t o .* / i. test ( noteBody ) ;
344348
345349 const matchingComment = settings . skipMatchingComments . reduce (
346350 ( a , b ) => a || new RegExp ( b , 'i' ) . test ( noteBody ) ,
You can’t perform that action at this time.
0 commit comments