-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINPUT_SCHEMA.json
55 lines (55 loc) · 2 KB
/
INPUT_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
{
"title": "Github Champion",
"description": "This is the Github Champion actor's input schema",
"type": "object",
"schemaVersion": 1,
"properties": {
"githubApiToken": {
"title": "Github API token",
"type": "string",
"description": "To use this actor with private repositories, you will need a GitHub API token with the **repo** permission granted - create it at https://github.com/settings/tokens/new",
"editor": "textfield",
"nullable": true
},
"repositoryOwner": {
"title": "Repository owner",
"type": "string",
"description": "The owner's or organization's name. E.g. \"apify\"",
"editor": "textfield",
"prefill": "apify"
},
"accountType": {
"title": "Type of account",
"type": "string",
"description": "For private repositories, you will need an API token with the 'repo' permission.",
"default": "public",
"editor": "select",
"enum": [
"private",
"public"
],
"enumTitles": [
"Private",
"Public"
]
},
"repositories": {
"title": "Repositories",
"type": "array",
"description": "A JSON array of repository names. E.g. [\"apify-docs\", \"apify-web\"]. If left blank, the actor will include all of the owner's repositories.",
"editor": "json",
"prefill": [],
"nullable": true
},
"numberOfWeeks": {
"title": "Number of weeks",
"type": "integer",
"description": "The number of weeks, from the day of the actor's run, to monitor. E.g. If you would like to monitor the activity from the past 4 weeks, enter 4. Defaults to 2.",
"default": 2,
"editor": "number"
}
},
"required": [
"repositoryOwner"
]
}