I have this jira automation which triggered on sub-task when subtask status change to resolved. now based on this, I want to find and update other sub-task (with exact summary) from same parent.
Hello @Dhaval
Welcome to the Atlassian community.
The rule you are showing appears to be built to do what you want.
WHEN
- a Sub-task with summary="QA - Analysis & Test Scenarios C..." is transitioned to Resolved
LOOKUP ISSUES
- find sibling sub-tasks
BRANCH over each sibling sub-task found
- IF the sub-task summary = "QA - Test Case Creation"
- THEN edit the Description of that sub-task
Is the rule not generating the results you expect? What results do you expect? What result do you observe? What information is recorded in the Audit Log for the rule when it executes?
Thanks for the reply, @Trudy Claspill
Yes, this rule not generating the results I'm expect. I want to edit the sibling sub-task once the triggered sub-task transitioned to resolved status.
It's updating triggered sub-task not the one which I want (sibling one).
audit log:
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I recommend that rather than using a Lookup Issue action followed by a branch you instead use a just Branch: Related Issues: JQL, with a JQL that will look for an exact phrase match in the Summary
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's working now.
Thanks, @Trudy Claspill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, @Dhaval
If your problem has been resolved by the response I provided, please consider clicking on the Accept Answer button above it to mark your Question as Solved.
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.