branchFilter

Defines branch filter which can be used to limit the branches visible in the build configuration.

Example. Show default branch only

branchFilter = "+:<default>"

Example. Show all branches except all release branches

branchFilter = """
+:*
-:release/*
""".trimIndent()


*/