Hi All,
I have a requirement to auto create tickets on scheduled basis with jira automation, and on summary field each time a ticket is created it should increase number ex
1. schedule
Summary : XXXXXXXX Release 21
2. Schedule
Summary : XXXXXXXXXXX Release 22
3. Schedule
Summary : XXXXXXXXXXX Release 23
each time a new ticket created the release number should increase, can any one suggest how can i achieve. Thanks
Regards,
Rajesh
I can think of three ways to accomplish this:
Kind regards,
Bill
Hi @Bill Sheboy Thank you for response, unable to understand from where to start. Can you please suggest with an example please.
Regards,
Rajesh.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Rajesh. I will try to help with more details, but first...
Are you using Jira versions along with this or are these "Release" values independent of the built-in ones?
You note doing this on a schedule. What drives that schedule? Some event happening or is this just on time, such as every 3-days?
Thanks!
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
We are not using version, actually these versions are from developers project and they want an automation to be created on db project with their release. DB team is not using the versions or release on their one.
Yes the automation is schedule and it executes every 3 weeks.
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. I encourage you to read about creating rules before you start: https://www.atlassian.com/software/jira/guides/expand-jira/automation
Your rule could be something like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Bill for your support, it worked and automation is able to add value for new tickets. Really Appreciate your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This has been really useful. My 'number' is in the middle of the summary text so I modified the above lookup value to the below. It may not be the most efficient way for this case but it works at the moment.
{{lookupIssues.first.summary.substringBetween("Sprint","into").trim().split(" ").first.asNumber.plus(1)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Bill Sheboy
Can you please Suggest me the automation Rule for Below example:
I have seeking your help because this seems to be close to my example below:
To have a field that is automatically populated on creation, with the value "REQ.(N+1) where N is the value from the most recently created story., and whenever a issue type = story is deleted, Then it has to continue the Next Incremental value , when a new story issue is created.
Please let me know if any information is in need from my end.
Regards,
Abhi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Abhi
I suggest you create a new question, and link back to this thread. Otherwise only the people following this one will see it.
When you do that, please post images of your complete rule, the audit log details showing the rule execution, and describe what is not working as you expect. That will provide context for the community to offer suggestions.
Kind regards,
Bill
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.