Skip to content

Commit

Permalink
add all branches but PRs to filter (#3590)
Browse files Browse the repository at this point in the history
  • Loading branch information
artspb authored Nov 29, 2023
1 parent d8ed28f commit 15142ac
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,14 @@ class TestBuild(val os: String, val arch: String, val version: String, buildId:

vcs {
root(DslContext.settingsRoot)
branchFilter = if (version == "tip") "-:pull/*" else "+:*"
branchFilter = if (version == "tip") {
"""
+:*
-:pull/*
""".trimIndent()
} else {
"+:*"
}
}

if (version == "tip") {
Expand Down

0 comments on commit 15142ac

Please sign in to comment.