I am trying to create a dashboard that will allow me to see in which sprint an issue was completed during the project.
So I created a custom field called Sprint Completed that lives with each issue. I want to populate that custom field based off of the transition into Complete from Work to be Verified. I have it all figured out except for the part about the current active sprint.
I can get an array of sprints that this issue has ever belonged to, but I don't need that. I would just like the current active sprint during the transition. Is this possible?
No. I am not using any third party apps.
However, I would like to know if scriptrunner would allow for a solution to this problem.
Are you using scriptrunner for this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@dalioto yes, you I believe you could do this with a listener. When the transition is made you would check for
issue.sprint.state == 'active'
and if true, you could populate your field with the value from issue.sprint.name
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.