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.
Hello,
I'm using ScriptRunner for Jira Cloud and I basically have the following workflow that I'm trying to automate.
Basically I want any updates to the fix version to propagate out to any linked support tickets, I've managed a solution which unfortunately will only work on Jira server, and I'm struggling a little getting this to work on cloud having just migrated.
Here's the shell:
def fixVersionChanged = changelog?.items.find { it['field'] == 'Fix versions' }
if (!fixVersionChanged) {
//logger.info("Fix Version was not modified")
return;
}
//logger.info("Fix Version was modified")
Assistance would be much appreciated.
Thank you
Hi @[deleted]
Is it a MUST that it needs to be done with scriptrunner? Jira cloud provides Automation for Jira out of the box and this is a very simple task that could also be implemented with A4J without any need of scripting.
Furthermore:
Are the linked issues within the same project than the trigger-issue?
Best
Stefan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.