Hello
We have begun to write automation rules in our Jira project.
The latest is for our Release team to notify our stakeholders that we have released and deployed a change that will resolve a linked issue in their project. This is triggered nicely by the transition to Done.
The notification is being written to Teams via a webhook created in a channel.
The notifications are working and we have worked out how to retrieve some of the issue details but cannot find how to retrieve the linked issues.
We currently are simply writing them to the comments field and publishing the last comment. This is obviously double handling and it also won't publish the URL nicely.
Can anyone help with the code needed to be placed in the automation rule to list the linked issues?
Thanks in advance
Any idea how to make list of these?
So instead of printing ABC-1, ABC-2, ABC-3... etc it would print along the lines:
ABC-1 - Summary - Link
ABC-2 - Summary - Link
Would that be doable?
@Jenni Järvinen I'm Looking for the same solution, tried many different approaches and could not make it work yet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Garth
Do you just want a list of the issueLinks for the trigger issue?
Have you tried:
{{issue.issuelinks.inwardIssue}}
{{issue.issuelinks.outwardIssue}}
These aren't limited to one key, just all related keys depending on the link direction
Ste
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.
I have since found
{{issue.issuelinks.first.outwardIssue.key}}
which seems to help
If there are two how to I return the second?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey there Garth,
You should be able to use a similar format as above to print out the links to all the issues. In the above example, issue.issuelinks is the list of issue links, .first only picks the first issue, so if you omit that, it will try to resolve all the links in the list.
So if you go:
{{issue.issuelinks.outwardIssue.key}} -> should output ABC-12, ABC-13
{{issue.issuelinks.outwardIssue.url}} -> should out put links to the above issue
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.