Hi,
following situation:
Tasks:
Problems:
{{#issue.issuelinks.type}}
{{#if(equals(name, "Communication"))}}
{{issue.issueLinks.inwardIssue.status.name}}
{{/}}
{{/}}
{{#issue.issuelinks.type}}
{{name}}
{{/}}
So can someone find my mistake?
BR Christof
Maybe I have to go another way and lookup for the issue via JQL:
issue IN linkedIssues("{{issue.key}}") AND issueLinkType = "has communication"
Can you try using below syntax to get linked issue key and its status name
{{#issue.issuelinks}} {{outwardIssue.key}} {{outwardIssue.status.name}} {{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This gets nothing. With inward... it gets the other linked issue which is wrong.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We can get the value of issue key based on the type of 'issue links'.
When we link "Issue B" from "Issue A" using 'blocks' (Issue A > More > Link > Issue B),
We can fetch the values of linked issue keys (both "Inward" and "Outward" using below smart values.
Inward Issue is {{issue.issuelinks.inwardIssue}}
Outward Issue is {{issue.issuelinks.outwardIssue}}
{{issue.issuelinks.inwardIssue.key.status}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is true but not related to the problem.
Issue A have one or more linked issues. Only ONE of these is relevant (Communication and inward linktype "is communication for") and status status of only this one needs to be determined.
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.