Check for a specific fix version
...
Code Block |
---|
DATE(“0/Jan/2021”) < fixVersion.releaseDate AND fixVersion.releaseDate < DATE (“31/Mar/2021”) |
Check that child issues and paret issues have the same Fixversion
Code Block |
---|
with parentVersion = PARENT{FixVersion}: if(parentVersion and !parentVersion.contains(fixVersion); "version mismatch") |
...