Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×We would like to create issues automatically based on a certain list of users and assign it to them.
Based on some internet ideas we've Created a smart value list in automation
{{AissgneeList}} as {{"User1,User2"}}, the users are hardcoded for now for testing purposes, also not sure how to get project or group user's list for automation.
After that we are creating a branch based on AssigneeList.split(",") with variable Person in two steps
1. Create an issue and
2. Assign issue to variable {{Person}}
The automation creates only two issues, not 4, and does not assign the issues to users.
Any help to what is possible to do?
Hi @LENA BURLAK -- Welcome to the Atlassian Community!
Your rule will need some changes to work with a user list...
First, I do not believe Jira Cloud automation rules can use the user's display name to assign issues. Instead the account id value must be used. There are several ways to solve this:
Next, I recommend adding a prefix to the names of variables (e.g., created or in a branch), such as with varPerson. This will reduce the risk of collisions with built-in smart value names.
Next, to create a list for the branch looping, the curly brackets and quotation marks are not needed. In your example it might look like this:
Jane Doe, John Doe
Please note well the use of a comma followed by a space as a delimiter. This helps make the list more readable, and must be accounted for in the branch:
The alternative is to change the delimiter between names to only be a comma (or use the Lookup Table mentioned earlier).
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.