What's the best way to access the FixVersion field from a Scriptrunner Behaviours server-side script?
We have the below use-case.
IF a custom field called Critical Issue is set to "Approved," THEN:
1) get the fixVersion(s)
2) append fixVersion(s) as labels. example: "Exclude_from_FixVersionA", "Exclude_from_FixVersionB"
3) clear fixVersion field
Hi Matt,
You could use this to clear the Fix Version field values:
def fixVer = getFieldById("fixVersions")
fixVer.setFormValue([null])
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.