Create subtasks on specific label with listener

Morgan_Heijdemann April 18, 2016

Hi everybody,

 

I'm trying to use a listener for the Issue Created event to check if there's a specific label that requires the creation of several subtasks in that issue. I've used this script but absolutely nothing is happening when I create a new issue after adding and enabling the listener:

if(contains(labels,"NieuweMedewerker")){
    createIssue(project,parent,"Sub-task","Desktop");
    createIssue(project,parent,"Sub-task","Monitor & Keyboard");
    createIssue(project,parent,"Sub-task","AD Nieuwe Gebruiker & Rechten");
    createIssue(project,parent,"Sub-task","Telefoon");
    createIssue(project,parent,"Sub-task","Contactgegevens");   
}

1 answer

1 accepted

3 votes
Answer accepted
Alexandra Topoloaga
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 18, 2016

Hi Morgan,

 

Replace "parent" from your calls to createIssue routine with "key". You want the new issues to be children of the current one.

If you would have used "parent", the parent of the current issue would have been searched (and it doesn't exists), so the subtasks would not be created.

 

createIssue(project,key,"Sub-task","Desktop");
//...

Best Regards,
Alexandra 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events