Hi everyone,
I have a question.
I created a custom field that is inside a story, corresponding to those responsible for the child items, but I would like to assign the custom field to be autocompleted whenever I direct a responsible person to the child item. It's possible?
Example:
custom field - other responsible(history)
field responsible for the item (subtask)
After, filling out the responsible field, it must be filled in the custom field other responsible
Hi, Pedro,
Welcome to the Atlassian Community!
From my understanding, you have a multi-user picker field on the Story where you'd like to maintain a list of all the assignees of the sub-tasks.
Could you provide a screenshot of the current rule you have?
My idea would be to trigger an automation when the sub-tasks have the assignee modified. When that happens, you have a rule to branch out on the parent to add the assignee of the trigger issue to the parent Story's custom field.
Cheers,
Filipi Lima
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Filipi Lima I'm sending my flow screen(english)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Pedro,
On the "Então: Editar campos do item", instead of using the advanced options you should be able to achieve your goal by:
I'm more familiar with the Data Center/Server automation, so there might be small differences but all these options should be available.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Filipe Lima,
Thank for return.
as I use the project managed by the team, Jira does not let me choose the custom field, but only through the command code. Is it possible to do this via code?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Pedro, I'm unable to test this myself, but see if this works for you - see how I reference the triggerissue on it:
{
"update": {
"Demais Responsáveis" : [{
"add": {
"id":"{{triggerIssue.assignee.accountId}}"
}
}]
}
}
And a couple links to learn more about it:
https://confluence.atlassian.com/automation/smart-values-993924860.html
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Everything worked! amazing. Thank you for your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm glad to hear it!
Have a great day!
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.