Hi!
I am trying to set up an event-based action in JMWE so that whenever a comment is created with a specific user tagged in, an email is sent out to notify them, I have the Email side sorted, but I need some help in setting up the conditional execution, I'm assuming it's going to be something like {{ issue.fields.comment.last.body.includes("accountid:12345678") }} but I can't seem to get this working.
Any ideas are greatly appreciated as I'm losing my mind!
Thank you! :D
in an event-based action that reacts to a comment created event, the new comment is available in the "context", so you can use:
{{ context.comment.body.includes("accountid:12345678") }}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.