判断问题类型

如果问题类型为Story,条件结果为true

if(issue.issueType?.name == 'Story'){
    return false;
}else{
    return true;
}