I want to automate a rule in jira software wherein If Fix version (Releases) field will be updated/changed then Goals field and feature must be also changed as per the release
Hi @Nishant Kumar ,
You could probably create automation for this.
Basically, something like this could probably work:
Lookup table could contain mapping between releases/versions and goals (I'm just not sure you would need to input ID of a goal instead of goal key 👀; we've just hit this 12-hour execution limit on this demo instance, so I can test this a bit later)
For edit work item, you could then set a goal by using
{{releaseGoalMapping.get(issue.fixVersions.name)}}
Would probably need to check cases, what if you've got multiple fix versions, but I guess something like this would work.
Cheers,
Tobi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.