How can I set up a notification for each time the Version on an EPIC is changed?

anita daswani August 17, 2023

How can I set up a notification for each time the Version on an EPIC is changed?

And also a notification when Stories are added to an active EPIC

1 answer

1 accepted

0 votes
Answer accepted
Aaron Coonce August 17, 2023

Anita,

 

Automation for Jira has a trigger that queues off when a Version is updated. From there you can have it perform an action. For you that action may be sending an email.

For the second one you can have a trigger that when Field Value Changed. Set the field to "Epic Link" and then perform your notification action from there.

anita daswani August 20, 2023

Thank you so much. This helped.

anita daswani August 22, 2023

I've now managed to get the notification with the Feature/Epic key. But I'd like to also have the Feature description/name in the notification and can't seem to get that working. Any tips please? Thanks

Aaron Coonce August 22, 2023

Have you tried utilizing smart values to accomplish this? 


https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/

If you still need help please let me know.

anita daswani September 27, 2023

Yes, I've tried every combination of the smart values but perhaps the syntax is wrong. I can get the TO value but not the FROM value. Here's my code...

Feature changed by {{reporter.displayName}} for

ISSUE: {{issue.key}} {{issue.summary}}

ISSUE TYPE: {{issue.issueType.name}}

FROM: {{fieldChange.fromString}}        Here I want the FROM epic summary also and not just the key. Just like below, which give me the key and the summary

TO: {{fieldChange.toString}}  {{epic.summary}}

FEATURE STATUS IS: {{issue.epic.status.name}}  

Suggest an answer

Log in or Sign up to answer