I'm updating Source field value Based on the condition of destination issue field value while linking a ticket.
Ex: Source issue has a field where i need to update the value.
Destination issue has a field where i need to check the values.
When Both tickets are linked then
If Destination issue field value is 123 then update Source issue field values has ABC
If destination issue field value is 456 then update source issue field values has XYZ
Hello @Prathap DL
Have you tried to construct this rule? If so, please share with us the details of what you have, and let us know exactly what question you have.
Please find the below screenshots.
Currently rule is executing and the log is showing that destination issue is edited. I want source issue should be edited. But Rule should check destination field value first then based on that source issue field should be updated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Within an Automation Rule that uses the Issue Linked trigger, "source" and "destination" have specific meanings based on the Link Type you have specified. Refer to my answer here for a detailed explanation:
Are you using the terms "source" and "destination" the same way Jira does in this case? Does the log's notes about which issue is the source (CH-103) and which issue is the destination (CH-102) match your use of the terms?
If so, then if you want to edit the source issue based on applying a Condition to the destination issue, then you need to use a Smart Value Condition instead of a branch.
The branch shifts the rule focus to the destination issue, so all actions within the branch are applied to the destination issue. With a Smart Value Condition you can check a field in the {{destinationIssue}} while keeping the rule focus for future Actions on the source issue.
I see that you want to check if the Type of the destination issue is one of a set of values. In order to implement that, you will need to start by selecting the IF or ELSE condition.
Then click on the At least one condition matches button.
Then add two Smart Value conditions to check if the {{destinationIssue.type}} field equals each of the issue type values.
And finally, add your Edit Issue action.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.