Skip to content

Commit

Permalink
Add VCS root with branch specification allowing to execute configurat…
Browse files Browse the repository at this point in the history
…ion from any branch @ scheduled build of Docker images.
  • Loading branch information
AndreyKoltsov1997 committed Sep 26, 2023
1 parent 57a873f commit 4daaf42
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .teamcity/common/TeamCityDockerImagesRepo_AllBranches.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package common

import jetbrains.buildServer.configs.kotlin.v2019_2.vcs.GitVcsRoot

/**
* teamcity-docker-images that allow execution from each branch. The use must be limited to development ...
* ... configurations only.
*/
object TeamCityDockerImagesRepo_AllBranches: GitVcsRoot({
name = "TeamCity Docker Images - All Branches"
url = "https://github.com/JetBrains/teamcity-docker-images.git"
branchSpec = "+:refs/heads/*"
branch = "refs/heads/%teamcity.branch%"
})

0 comments on commit 4daaf42

Please sign in to comment.