-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
29 lines (29 loc) · 1010 Bytes
/
app.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
{
"name": "Hacktoberfest-Leaderboard",
"description": "Make the hacktoberfest a competition with a leaderboard",
"keywords": [
"hacktoberfest",
"leaderboard"
],
"repository": "https://github.com/ourtigarage/hacktoberfest-leaderboard",
"success_url": "/",
"env": {
"GH_TOKEN": {
"description": "The github token used to authenticate to github API",
"required": false
},
"EVENT_DATE": {
"description": "The date criteria used to fetch data from github, in the github search format. See https://help.github.com/articles/understanding-the-search-syntax/#query-for-dates",
"value": ">=2005"
},
"PARTICIPANTS_FILE": {
"description": "URI to the file containing the list of participants. Can be a local or a remote file",
"required": true
},
"OBJECTIVE": {
"description": "Number of pull requests to make in order to complete the challenge",
"value": "4",
"required": false
}
}
}