Im looking to auto change the work item assignee when the state changes from in progress to qa. I want the work item assignee to be the test sub-task assignee.
What have you tried thus far to solve this need?
If you have a rule that is not working, context is important for the community to help. Please post the following:
If you have not started are rule yet, I encourage you to try to do so. Successfully using automation rules requires learning and experimentation.
To help you get started, your rule could:
Kind regards,
Bill
Thanks Bill! Im going to apply your suggestions now. Ill post with more context in a few if unsuccessful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jerry Rodriguez , assuming you are using Jira cloud, this set up of a single automation rule should work for you:
parent = {{issue.key}} AND issuetype = "Test" AND assignee IS NOT EMPTY ORDER BY updated DESC
(Adjust the issue type name if your Test sub-task is called something else.)
{"fields": {
"assignee": {
"id": "{{lookupIssues.assignee.accountId}}"
}
}
}
(Nice to have) Add a comment or an Audit Log action:
Set assignee to {{lookupIssues.assignee.displayName}}
from sub-task {{lookupIssues.key}}.
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.