In Jenkins you can easily create a list view with the Job DSL
listView("myView") {
jobs {
regex(".*")
}
}
but if you try to create a list view within a folder, the folder will be created but not the view
folder("someFolder")
listView("someFolder/myView") {
jobs {
regex(".*")
}
}
Is there a way to accomplish this?