in deploy-templates/JobProvisionerDefault.groovy [254:283]
def createListView(codebaseName, branchName) {
listView("${codebaseName}/${branchName}") {
if (branchName.toLowerCase() == "releases") {
jobFilters {
regex {
matchType(MatchType.INCLUDE_MATCHED)
matchValue(RegexMatchValue.NAME)
regex("^Create-release.*")
}
}
} else {
jobFilters {
regex {
matchType(MatchType.INCLUDE_MATCHED)
matchValue(RegexMatchValue.NAME)
regex("^${branchName}-(Code-review|Build).*")
}
}
}
columns {
status()
weather()
name()
lastSuccess()
lastFailure()
lastDuration()
buildButton()
}
}
}