Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
Using groovy or scriptrunner, I want to get the latest sprint name that has longest timeline or close at last.
Lets say, EPIC-1 stories are distributed in 3 sprints with different end date.
Epic 1:
-sprint 1 - Timeline: 10-28-2019 to 11-15-2019
--- Story1
--- Story2
-Sprint 2 - TImeline: 11-04-2019 to 11-12-2019
--- Story1
--- Story2
-Sprint 3 - TImeline: 11-04-2019 to 11-29-2019
--- Story1
--- Story2
The script should return "Sprint 3" name. I able to find the sprint name and date value for each sprint but i not sure how to compare date for each sprint and get the latest sprint date.
Thanks,
Assuming your sprints are in an array, you could just sort them.
def lastSprindByEndDate = sprints.sort{it.endDate}.last()
def lastSprintName = lastSprintByEndDate.name
def lastEndDate = lastSprintByEndDate.endDate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @PD Sheehan ,
Where to run this script and what kind of script is this, we need to purchase any extra plugins for running these scripts??
Could you please let me know.
Thanks,
Raju
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you look in the tags for this question is it includes scriptrunner and script-listener.
So this means that you need the ScriptRunner for Jira Server add-on and this is configured within that application using a custom script listener.
If you don't know what that means, I would suggest you start with https://docs.adaptavist.com/sr4js/latest/get-started
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.