You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi there,
I have a question
How to notify Linked issue Assignee when issue resolved?
Example
- issue 10 linked to issue 9 as starts after (see image)
- When issue 9 resolved, how I can configure in Jira Administration to let issue's 10 Assignee to get email Notification?
If my question is not clear, please let me know
Thank you very much!
Hello,
You would need an add-on for it like Power Scripts, Script Runner, Automation for Jira.
If you want to use the Power Scripts add-on, you could write a post function for the resolved transition with a code like this:
string[] links = allLinkedIssues(
key
,
"Your Link"
);
for (string link in links) {sendEmail(
"testFrom@cprime.com"
, {assignee}, {},
"testSubject.tpl"
,
"testBody.tpl"
);
}
You can find more information here:
Hi Alex,
Do you mean that I need to use Plugin like Script Runner and add more code to current Jira code as your sample script?
We have been using Scrip Runner as trial. We will process to buy it. But i am not familiar with writing source code. Could you please guide me in more detail for how to add your sample code to send notification?
Thank you very much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Anh,
Have you solved this question? I faced the same situation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.