You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/index.json
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,9 @@
19
19
},
20
20
{
21
21
"$ref": "#/definitions/GitLabConfig"
22
+
},
23
+
{
24
+
"$ref": "#/definitions/BitbucketConfig"
22
25
}
23
26
]
24
27
},
@@ -114,6 +117,48 @@
114
117
"GitLabURL"
115
118
],
116
119
"additionalProperties": false
120
+
},
121
+
"BitbucketConfig": {
122
+
"type": "object",
123
+
"properties": {
124
+
"Type": {
125
+
"const": "bitbucket"
126
+
},
127
+
"BitBucketServerURL": {
128
+
"type": "string",
129
+
"description": "BitBucket Server url"
130
+
},
131
+
"BitBucketServerProject": {
132
+
"type": "string",
133
+
"description": "project to mirror"
134
+
},
135
+
"DisableTLS": {
136
+
"type": "boolean",
137
+
"description": "Disable TLS verification",
138
+
"default": false
139
+
},
140
+
"ProjectType": {
141
+
"type": "string",
142
+
"description": "Only clone repos whose type matches the given string. Type can be either NORMAl or PERSONAL. Clones projects of both types if not set.",
0 commit comments