Hi Everyone, I'm Emmanuel Katto from Uganda, I'm looking for guidance on creating linked issues based on the number of users in a custom field. Specifically, I have a user picker custom field and need to generate linked issues for each user listed in that field, with each user's name included in the summary of the new linked issues. How can I achieve this using Jira automation?
Regards
Emmanuel Katto Uganda
Hi Emmanuel Katto,
To create linked issues in Jira for each user listed in a user picker custom field and include each user's name in the summary of the new issues, you can use Jira Automation. Below is the step-by-step guide to setting up this automation rule:
${field}
to include the user's name in the summary. For example, "Task for ${field.displayName}"
.${field.displayName}
: To get the full name of the user.${field.emailAddress}
: If you want to use the email address.This rule will create a linked issue for each user in your custom field, with the user’s name in the summary. The branch function iterates over each user, ensuring that each one gets their corresponding issue.
This approach should be flexible enough to handle various user picker fields and different linked issue types.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.