It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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"); }
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
It started as any story starts, on a normal, rainy day. Admin meets App, and her name was Klok2, and like any first relationship we were both trying to make it work but neither one knew what...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.