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.
This is a SCRIPTRUNNER FOR JIRA question...
I have a listener on the issue created event that needs to be applied to a large list (300+) of projects in specific categories. Our instance has 1,000s of project so doing this manually would be very tedious. And no, I can't make it global as the logic is specific to these projects.
Is it possible to programmatically add projects to an existing listener? Are there any Java classes available to modify a listener and are they documented somewhere?
You could do it with SR, yes, but you'd need to know the Scriptrunner API because you'll be making calls to update stuff handled inside SR.
It might actually be easier to
1) Add some code to the beginning of the listener, some that looks at the project (and maybe other data?) for the issue in the event and decides whether to proceed or not.
2) Remove all the current "work for project x", so that the listener runs for every project
i.e. move the decision to code which you have easier access to.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.