Every issue in JIRA has a default Sprint field. It is very straightforward. However, with bugs I need one more field - Found in Sprint. Values for this field are the same as that of default Spring field.
Sprint field represents the sprint in which issue is being addressed. However Found in Spring field is used to report in which spring this bug was found.
However, I am not able to create a custom field that contains values of all the sprints. Is there any way I can do this?
Community moderators have prevented the ability to post new answers.
Hi @Harshal
I managed to solve the same problem thru custom field with type "Label" and Jira automation rules.
Bit more info at the following link:
You'll need code to do that.
It's not that common to record "found in sprint", as people generally don't care what the sprint was, the date (and version often) determine when fixes for it go into the next sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For the "set", see https://scriptrunner.adaptavist.com/latest/jira/recipes/workflow/postfunctions/set-issue-attributes.html
For a get, I've got this saved
def sprints = issue.getCustomFieldValue(ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Sprint"))
Note that I use "sprints" because an issue could be, or have been in, many sprints.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Nic,
I dont think it will work for me,
I want a custom field and I want to fetch all the data in the system field SPRINT,
So that I can select a sprint from that custom field for tracking...
Thanks in advance..
Varun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You asked to get the value into a field.
Do you mean you want another sprint field? That would be a bad idea for your users, and you'd rapidly run into problems with volume unless your code was able to dynamically select during issue create/edit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am having the same situation:
Our customer wants a custom field for bugs that basically says "Found in Sprint". It is supposed to be something like a drop down menu where the possible options listed are all of the (passed) sprints. Could you please help me out with this?
Thanks in advance!
Sima
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Harshal ,
Hi @varunbitbucket ,
I am having the same situation with my customer. They too want a "second sprint field" for bugs called "Found in Sprint". What was the solution you implemented for this need?
Thanks in advance.
Sima
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.
The solution is to use the sprint field as it is intended. "Found in sprint" is not really a useful piece of information (date/time it was found, or in what version of something it was found is far more useful), but if you really do find it useful, you just use a custom text field.
This is because sprint is not really a data field, it is an indicator of a timebox.
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.
See the discussion above.
Note also that I'm not pointing to any apps that would provide a custom field that behaves as a sprint custom field because no-one has seen any value in writing one.
I think the best implementation of this would be a custom field that works the same way custom-versions do - the custom version field draws its options list from the versions in the project, the same list affects and fix versions draw theirs from. But you don't have a project context for a sprint, nor board, it would have to list every sprint in the system, making it fundamentally non functional after a medium or large user base had been using Jira for a few months.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
""Found in sprint" is not really a useful piece of information"
Maybe "Found in sprint" isn't useful, but we need to know if the deployment associated with a sprint broke something indicated by a new jira. So we want a custom field "Broke By Deployment" select list which has Sprints pre-populated to select from.
So if we could simply create a "second Sprint" field and give it a custom label, that would get the job done. Or, if we could create a custom field and tell it to populate the select list with the list of sprints, that would also work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Apply agile practices
Transform how you manage your work with agile practices, including kanban and scrum frameworks.
Learning Path
Configure agile boards for Jira projects
Learn how to create and configure agile Jira boards so you can plan, prioritize, and estimate upcoming work.
Jira Essentials with Agile Mindset
Suitable for beginners, this live instructor-led full-day course will set up your whole team to understand how to use Jira with an agile methodology.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.