-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-info.schema.json
47 lines (47 loc) · 1.07 KB
/
package-info.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
{
"title": "Subscriber schema",
"type": "object",
"properties": {
"sourceRepo": {
"type": "string",
"title": "Source Repo (org/repo)",
"pattern": "^[\\w\\d](-?([\\w\\d]-?)*[\\w\\d])?\\/[ -~]+$"
},
"sourceMaintainers": {
"type": "array",
"title": "Source Maintainer",
"items": {
"type": "string",
"pattern": "^[\\w\\d](-?([\\w\\d]-?)*[\\w\\d])?$"
},
"minItems": 1
},
"packageName": {
"type": "string",
"title": "PyPI Package Name"
},
"recipeName": {
"type": "string",
"title": "Pyodide Recipe Name"
},
"prAsReady": {
"type": "boolean",
"title": "Open as non-draft?",
"default": false
},
"prTitlePattern": {
"type": "string",
"default": "Upgrade {recipeName} to {version}"
},
"prBodyPattern": {
"type": "string",
"default": "This PR was created by a bot. Pinging @{sourceMaintainer} to check this."
}
},
"required": [
"sourceRepo",
"sourceMaintainers",
"packageName",
"recipeName"
]
}