Skip to content

Commit

Permalink
[CI] [TeamCity] Move PR commit status publishing gate to accommodate …
Browse files Browse the repository at this point in the history
…PR bot (#88911)
  • Loading branch information
brianseeders authored Jan 20, 2021
1 parent da8abda commit 82c1501
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .teamcity/src/builds/PullRequestCi.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,15 @@ object PullRequestCi : BuildType({
}

features {
commitStatusPublisher {
enabled = isReportingEnabled()
vcsRootExtId = "${Kibana.id}"
publisher = github {
githubUrl = "https://api.github.com"
authType = personalToken {
token = "credentialsJSON:07d22002-12de-4627-91c3-672bdb23b55b"
if(isReportingEnabled()) {
commitStatusPublisher {
enabled = true
vcsRootExtId = "${Kibana.id}"
publisher = github {
githubUrl = "https://api.github.com"
authType = personalToken {
token = "credentialsJSON:07d22002-12de-4627-91c3-672bdb23b55b"
}
}
}
}
Expand Down

0 comments on commit 82c1501

Please sign in to comment.