I am using a Script Post function to create subtask for below scenario:
When a user will create a Parent issue(only a single issue type say Bug) with specific summary pattern like [Specification.Input_create test1] then a subtask should be created with particular name.
I have created the script Post function but i don't know what condition should i write for the taking the summary of parent issue. Please help solve this.Condition for subtask creation.jpg Thanks!
--Avinash Gautam
Try this condition^
issue.getSummary().indexOf("[Specification.Input_create test1]") >= 0
Hi Vasiliy Zverev,
No Luck. I tried. I just want to say. The summary of parent issue could be something like
Specification.Input_create test1,
Specification.Input_create for the testing,
etc
So please let me know the condition accordingly. may be i have to use a Regex but i am not been able to find that. Thanks!
--Avinash Gautam
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the condition field use
!issue.isSubTask() && issue.summary ==~ regex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am sorry but this is also not working. Please let me know if someone can give generic condition which will search parent issue summary field and then only create the subtask.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Avinash,
What the above condition does is, checking if the issue is not a subtask and it's summary matches the regex provided. What is your regex ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My regex is *Specification\.* i wanted to match a line of summary like
Specification.Input_create Input Layer data model for SAP Nord and Süd data
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this:
issue.getSummary().indexOf("Specification]") >= 0
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.