Hi all,
Is it possible to define names with incremental Values. Currently at my company de sprint nomenclature is as belongs:
Sierra Spr32: 5/Feb - 18/Feb
Sierra Spr33: 19/Feb - 4/Mar
I have been looking into when a Sprint Starts...send an email to the scrum master to review the upcoming JIRAs that are already in the upcoming sprint to verify that all the requirements are in place. This has been hard due since I cannot get the dates of the current and following sprints.
So far this is what I have been able to accomplish so far
Sprint Name
Sprint Start/End Date
I am struggling to search for the next future sprint by name considering the naming convention
Sierra Spr##
This is the body of my email where I get the results of my variables.
Please let me know if there are any suggestions to seach by Sprint name "
Sierra Spr##
Hi @Ponce de Leon_ Eduardo -- Welcome to the Atlassian Community!
Have you started an automation rule to do this?
If so, and it is not working as expected, please post the following to provide context for the community to help:
If you have not started a rule yet, I encourage you to try to do so. Successfully using automation requires learning and experimentation.
To help you get started, please consider:
If the sprints exist and there are issues assigned, an automation rule could be triggered on the sprint started and use JQL to find them to notify the product owner to check them for readiness. If the sprints exist but there are no issues, the REST API could be used to find the sprints.
Kind regards,
Bill
Hi Bill,
thank you for the response, here is mine!
To help you get started, please consider:
If the sprints exist and there are issues assigned, an automation rule could be triggered on the sprint started and use JQL to find them to notify the product owner to check them for readiness. If the sprints exist but there are no issues, the REST API could be used to find the sprints.
-This is my ultimaate goal, I have added a better description and screenshot of my rule, but I am not stuck at the poing of searching for the future sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that information, and...
If you are still using the sprint started trigger, and the sprints are 14 days long, the name of the next sprint would be:
Sierra Spr{{sprint.name.substringBetween("Spr", ":").asNumber.plus(1)}}: {{sprint.startDate.plusDays(14).format("d/MMM")}} - {{sprint.endDate.plusDays(14).format("d/MMM")}}
That could be saved in a variable, perhaps named varNextSprintName, and used with JQL to find the issues using Lookup Issues:
project = yourProjectName AND sprint = "{{varNextSprintName}}"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bill Sheboy thank you for your response. I was able to adjust it to my needs and working perfectly. But now I am running into an issue where now that I have the sprint i am trying to search for the items on that Sprint related to a user and send them an email.
For some reason my variable to get the reporter name is not working.
I have tried the 2 below combinations with no luck!
{{lookupIssues.reporter.distinct}}
{{lookupIssues.reporter.displayName}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your sprint names contain spaces, and as the audit log shows that breaks the JQL comparisons.
When using the variable to compare, it must be enclosed in quotation marks:
AND sprint = "{{NewSprintName}}"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to find my own issue wich was looking at the wrong list of issues after the space issue. Thank your for all the help @Bill Sheboy
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.