Some users do not have the ability to set the sprint of a bug which causes me to manually set the sprint. I would like to run an effector to set the sprint of the created bug to the current sprint.
Dionathan with ALM Works here.
If you are using an on-prem version of Structure (7+), you could try the following steps:
Basically, it is checking the state of its Parent Sprint, and if it is "ACTIVE", it means that the Sprint is the current one, so it will set the bug to it.
Please let me know if it does help.
Best Regards,
Dionathan
Hi Dionathan, yes the suggested solution did work and thank you for it. One question.. is there a way I can populate the bug with the current sprint versus the parents sprint?
Thank You
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are always welcome.
The Sprint field from Jira only accepts one Sprint name at a time. So, if you need to write something like the below in your Bug:
Bug's Current Sprint: Sprint X / Parent's Sprint: Sprint Y
then, you will need to create a new Text Custom Field and change the Effector configuration to write the value to this new field.
The steps will be the same, just need to update the Field with the new custom field name, and the formula code will be something like this:
CONCAT ("Current: " CONCAT sprint.name
CONCAT " / Parents: "
CONCAT PARENT{sprint.name})
It should look like the below:
Here is the result of the above example in the Bug View Screen (Custom field name: Custom Sprint):
Hope that helps.
Best Regards,
Dionathan L
www.almworks.com
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dionathan - what you provided worked wonderfully! Now that our process has changed I need some additional help. Is there a way to apply the current active sprint in the project (not the one assigned to the parent) to a bug in a certain status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @James Schnur ,
David from ALM Works here.
In order for the solution provided by @Dionathan Lopes {ALM Works} to work, there needs to be another issue from which we will derive the active sprint value. Dionathan has suggested using the Parent issue.
In your new process, what issue should be used to identify this value? Unfortunately it is not possible to just reference the Active Sprint through Formulas. The value has to be pulled from another issue.
You may also consider looking into Scriptrunner by Adaptavist. They have a built-in post function that you could use to auto assign an issue to the active sprint on status transition.
Please let me know if this helps clarify the solution, or if I have misunderstood the request.
Best,
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.