Skip to content

Instantly share code, notes, and snippets.

@nohtyp
Created May 24, 2018 22:57
Show Gist options
  • Save nohtyp/6e91d8a5b9082f4a0b055ea7af315225 to your computer and use it in GitHub Desktop.
Save nohtyp/6e91d8a5b9082f4a0b055ea7af315225 to your computer and use it in GitHub Desktop.
This Gist wll get the releasedate for the version in the fixversions field in Jira and returns dueDate if not available.
//Gather due date based on fixed version or issue due date
string getvers;
if (isNull(fixVersions)) {
return dueDate;
}
else {
getvers = fixVersions;
return admGetProjectVersion(project, getvers).releaseDate;
//return admGetProjectVersions(project);
//return fixVersions;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment