branch Filter
Defines branch filter which can be used to limit the branches visible in the build configuration.
Example. Show default branch only
branchFilter = "+:<default>"
Content copied to clipboard
Example. Show all branches except all release branches
branchFilter = """
+:*
-:release/*
""".trimIndent()
Content copied to clipboard