File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -549,13 +549,17 @@ export class GithubHelper {
549549 const stateChange =
550550 ( / S t a t u s c h a n g e d t o .* / i. test ( noteBody ) &&
551551 ! / 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 ) ) ||
552- / c h a n g e d m i l e s t o n e t o .* / i. test ( noteBody ) ||
553- / M i l e s t o n e c h a n g e d t o .* / i. test ( noteBody ) ||
554- / R e a s s i g n e d t o / i. test ( noteBody ) ||
555- / a d d e d .* l a b e l s / i. test ( noteBody ) ||
556- / A d d e d ~ .* l a b e l / i. test ( noteBody ) ||
557- / r e m o v e d ~ .* l a b e l / i. test ( noteBody ) ||
558- / m e n t i o n e d i n i s s u e .* / i. test ( noteBody ) ;
552+ / ^ c h a n g e d m i l e s t o n e t o .* / i. test ( noteBody ) ||
553+ / ^ M i l e s t o n e c h a n g e d t o .* / i. test ( noteBody ) ||
554+ / ^ ( R e ) * a s s i g n e d t o / i. test ( noteBody ) ||
555+ / ^ a d d e d .* l a b e l s / i. test ( noteBody ) ||
556+ / ^ A d d e d ~ .* l a b e l / i. test ( noteBody ) ||
557+ / ^ r e m o v e d ~ .* l a b e l / i. test ( noteBody ) ||
558+ / ^ m e n t i o n e d i n i s s u e # \d + .* / i. test ( noteBody ) ||
559+ // /^marked this issue as related to #\d+/i.test(noteBody) ||
560+ / ^ 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 ) ||
561+ / ^ c h a n g e d t h e d e s c r i p t i o n .* / i. test ( noteBody ) ||
562+ / ^ c h a n g e d t i t l e f r o m .* t o .* / i. test ( noteBody ) ;
559563
560564 const matchingComment = settings . skipMatchingComments . reduce (
561565 ( a , b ) => a || new RegExp ( b , 'i' ) . test ( noteBody ) ,
You can’t perform that action at this time.
0 commit comments