-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGiteaConfig.schema.json
260 lines (260 loc) · 7.69 KB
/
GiteaConfig.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "SerialisedGiteaConfig",
"type": "object",
"additionalProperties": false,
"required": [
"users",
"repos"
],
"properties": {
"users": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/SerialisedUserInfo"
}
},
"repos": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/SerialisedRepo"
}
}
}
},
"definitions": {
"SerialisedUserInfo": {
"type": "object",
"additionalProperties": false,
"required": [
"email"
],
"properties": {
"isAdmin": {
"type": "boolean"
},
"email": {
"type": "string"
},
"website": {
"type": [
"null",
"string"
],
"format": "uri"
},
"visibility": {
"type": [
"null",
"string"
]
}
}
},
"SerialisedRepo": {
"type": "object",
"additionalProperties": false,
"properties": {
"description": {
"type": "string",
"description": "The text that will accompany this repository in the Gitea UI"
},
"gitHub": {
"description": "If this repo is to sync from GitHub, information about the repo.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SerialisedGitHubRepo"
}
]
},
"native": {
"description": "If this repo is to be created natively on Gitea, the information about the repo.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SerialisedNativeRepo"
}
]
},
"deleted": {
"type": [
"boolean",
"null"
],
"description": "Set this to true to delete the repo. We will refuse to delete any repo that is absent from\n configuration; the workflow is to first set its `deleted` to `true` (whereupon we will delete it from Gitea) and then to delete it from configuration."
}
},
"oneOf": [
{
"required": [
"description",
"gitHub"
]
},
{
"required": [
"description",
"native"
]
}
]
},
"SerialisedGitHubRepo": {
"type": "object",
"description": "Information about a repo that is being mirrored from GitHub.",
"additionalProperties": false,
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "e.g. https://github.com/Smaug123/nix-maui"
},
"mirrorInterval": {
"type": "string",
"description": "A Golang string, e.g. \"8h30m0s\""
}
}
},
"SerialisedNativeRepo": {
"type": "object",
"description": "Information about a repo that is to be created on Gitea without syncing from GitHub.",
"additionalProperties": false,
"required": [
"defaultBranch"
],
"properties": {
"defaultBranch": {
"type": "string",
"description": "The default branch name for this repository, e.g. 'main'"
},
"private": {
"type": "boolean",
"description": "Whether this repository is a Gitea private repo"
},
"ignoreWhitespaceConflicts": {
"type": "boolean",
"description": "either `true` to ignore whitespace for conflicts, or `false` to not ignore whitespace."
},
"hasPullRequests": {
"type": "boolean",
"description": "either `true` to allow pull requests, or `false` to prevent pull request."
},
"hasProjects": {
"type": "boolean",
"description": "either `true` to enable project unit, or `false` to disable them."
},
"hasIssues": {
"type": "boolean",
"description": "either `true` to enable issues for this repository or `false` to disable them."
},
"hasWiki": {
"type": "boolean",
"description": "either `true` to enable the wiki for this repository or `false` to disable it."
},
"defaultMergeStyle": {
"type": "string",
"description": "set to a merge style to be used by this repository: \"merge\", \"rebase\", \"rebase-merge\", or \"squash\"."
},
"deleteBranchAfterMerge": {
"type": "boolean",
"description": "set to `true` to delete pr branch after merge by default."
},
"allowSquashMerge": {
"type": "boolean",
"description": "either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging."
},
"allowRebaseUpdate": {
"type": "boolean",
"description": "either `true` to allow updating pull request branch by rebase, or `false` to prevent it."
},
"allowRebase": {
"type": "boolean",
"description": "either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging."
},
"allowRebaseExplicit": {
"type": "boolean",
"description": "either `true` to allow rebase with explicit merge commits (--no-ff), or `false` to prevent rebase with explicit merge commits."
},
"allowMergeCommits": {
"type": "boolean",
"description": "either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits."
},
"mirrors": {
"type": "array",
"description": "Configure GitHub push mirrors to sync this repo to",
"items": {
"$ref": "#/definitions/SerialisedPushMirror"
}
},
"protectedBranches": {
"type": [
"array",
"null"
],
"description": "Protected branch configuration",
"items": {
"$ref": "#/definitions/SerialisedProtectedBranch"
}
},
"collaborators": {
"type": [
"array",
"null"
],
"description": "Usernames on this Gitea instance who are collaborators on this repo",
"items": {
"type": "string"
}
}
}
},
"SerialisedPushMirror": {
"type": "object",
"description": "Information about a repo that is to be created on Gitea without syncing from GitHub.",
"additionalProperties": false,
"required": [
"gitHubAddress"
],
"properties": {
"gitHubAddress": {
"type": "string"
}
}
},
"SerialisedProtectedBranch": {
"type": "object",
"description": "Information about a repo that is to be created on Gitea without syncing from GitHub.",
"additionalProperties": false,
"required": [
"branchName"
],
"properties": {
"branchName": {
"type": "string"
},
"blockOnOutdatedBranch": {
"type": "boolean"
},
"requiredStatusChecks": {
"type": [
"array",
"null"
],
"description": "A list of status check patterns; merge into this branch will be blocked unless all these checks have run and passed. (Probably go with alphanumeric strings, I can't find any docs.)",
"items": {
"type": "string"
}
}
}
}
}
}