mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-15 01:42:45 +01:00
13 lines
330 B
Kotlin
13 lines
330 B
Kotlin
package _Self.vcsRoots
|
|
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.vcs.GitVcsRoot
|
|
|
|
object GitHubPullRequest : GitVcsRoot({
|
|
name = "IdeaVim Pull Requests"
|
|
url = "git@github.com:JetBrains/ideavim.git"
|
|
branchSpec = "+:refs/(pull/*)/head"
|
|
authMethod = uploadedKey {
|
|
uploadedKey = "Alex Plate TeamCity key"
|
|
}
|
|
})
|