You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
In my project I have a custom field, project picker type. I want that everytime I choose a project in this custom field an issue is created in that project that I've chosen.
I'm working in server and I have scriptrunner installed.
How can I do it?
Thanks
So this is pretty close: https://library.adaptavist.com/entity/automate-the-creation-of-an-issue-in-jira
The adjustments you'll need are
1. to do it as a post-function or listener (depends on exactly how you want to trigger the creation of the issue - your question reads like you want to do it every time the field changes on an issue, which I'm not sure is what you mean. If it is, then you'll want a listener to catch "edit" events as well as maybe transitions)
2. Instead of the hard-coded project id, read your custom field. A project picker should hand you a project object directly when you use getCustomFieldValue so you'd be able to replace the project = componentaccessort-etc stuff with that
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.