I need to set up the sprint field to record all sprints a iten passed
Hello,
You would need a plugin for it.
You could use the Power Custom Fields Premium add-on to create a SIL custom field, which would return information about sprints for each issue.
The code for the custom field would be like this:
string[] historyList = fieldHistory(key, "Sprint");
string sprints = "";
if (size(historyList) > 1){
for (int i = 1; i < size(historyList); i=i+2) {
sprints = sprints + ","+ sprintName(historyList[i]);
}
}
return sprints;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.