Hey community,
i want to give issue B a specific status if it is a duplicate from issue A.
Issue B is the new issue, and issue A already exists.
Already tried this.
Hi @Sebastian Pechhold The most important thing to understand about the Issue Linked trigger is how the source/destination work:
Rule executes when an issue is linked to another issue. {{issue}} will always refer to the source issue, so if ISSUE-A is blocked by ISSUE-B, this rule will execute on ISSUE-B. To access ISSUE-A, use {{destinationIssue}}, and to access the link type, use {{linkType}} (e.g. {{linkType}}
Your ask:
i want to give issue B a specific status if it is a duplicate from issue A.
Tying your case to the explanation above, issue A is duplicated by Issue B. Therefore Issue B is {{issue}} and issue A is {{destinationIssue}}
Now that we have this down, if I'm understanding correctly, you want to transition the duplicate ({{issue}}) to Declined. Your rule would look like this:
This would be a single rule because Jira automation has no mechanism for determining which issue initiated the linking. It always bases off of the link relationship.
I hope this makes sense.
Hi Mark, we found out that we have to use Issue A and link issue B to it.
That works because issue B gets declined as "duplicate(s)"
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.