I want to loop thru a list of names, do a lookup based on JQL for each of those names
Create Variable AllDevs = Dev1@mycompany.com, Dev2@mycompany.com, Dev3@mycompany.com
Loop thru each of the emails in the {{CurDev}} variable
In each iteration of the loop do something like Create variable CurDev = AllDevs(N)
Do a lookup on this JQL Project = ABC and and cf[10020] in openSprints() assignee = {{CurDev}}
Send an email with the body text of: "There are {{lookupIssues.size}} issues for {{CurDev}} in the current sprint"
The thing I'm stuck on is how to be able to loop thru each of the emails in AllDevs and extract one for each iteration into the CurDev variable.
Anyone have any suggestions on how to do this?