Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Validator to check if affectedVersion is released always returns false

Oliver
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 15, 2017

I'm setting up a simple scripted validator on the create step to ensure that the Affected versions are released, however the validator always fires even for affected versions which are released, and I'm having hard time figuring out where I'm going wrong. 

 

The validator is on the 'Create' step of the workflow, 

def affectedVersion = issue.affectedVersions
def releaseState = issue.affectedVersions*.isReleased()

releaseState == true

log.error "LOGGER:" + "$affectedVersion" + "$releaseState"

 

In the log output, I can see that it's correctly reporting the releaseState, but even for versions where releaseState is being logged as true, the validator is kicking in.

 

Any suggestions would be much appreciated! 

1 answer

0 votes
Cristina_Abunei
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 23, 2017

Hello,

 

Try to return the comparison's result:

return releaseState == true

The validator isn't returning anything so the result is coreced to false.

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events