I have a question if it would be possible to check a match against another vairable like this:
{{#ifMatches messageTitle "^{{issue}}+"}}
{{link}}
{{/ifMatches}}
At the moment I cant check messageTitle against anything but this works:
{{#ifMatches issue "^[A-Z]+-[0-9]+"}}
{{link}}
{{/ifMatches}}