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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.