- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for vcsRootId (0.04 sec)
-
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
val isLegacyRelease: Boolean get() = OLD_RELEASE_PATTERN.matchEntire(branchName) != null val isExperimental: Boolean get() = branchName == EXPERIMENTAL_BRANCH fun vcsRootId() = DslContext.settingsRoot.id.toString() fun gradlePromoteVcsRootId() = if (isExperimental) GRADLE_PROMOTE_EXPERIMENTAL_VCS_ROOT_ID else GRADLE_PROMOTE_MASTER_VCS_ROOT_IDRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
if (model.publishStatusToGitHub) { publishBuildStatusToGithub() } } fun BuildFeatures.enablePullRequestFeature() { pullRequests { vcsRootExtId = VersionedSettingsBranch.fromDslContext().vcsRootId() provider = github { authType = token { token = "%github.bot-teamcity.token%" }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 20 07:29:52 UTC 2025 - 8.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt
name = "GitHub Merge Queue Check Pass" type = Type.COMPOSITE vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId())) checkoutMode = CheckoutMode.ON_AGENT } features { enablePullRequestFeature() publishBuildStatusToGithub(model) }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Oct 14 16:28:05 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
// We want it to be triggered only when there're pending changes in the specific vcs root, i.e. GradleMaster/GradleRelease triggerRules = "+:root=${branch.vcsRootId()}:." branchFilter = "+:<default>" } class PublishNightlySnapshot( branch: VersionedSettingsBranch, ) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 4.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
param("env.BUILD_BRANCH", "%teamcity.build.branch%") } vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId())) checkoutMode = CheckoutMode.ON_AGENT branchFilter = branchesFilterExcluding() } features { enablePullRequestFeature() } requirements {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 15.6K bytes - Viewed (0)