-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.33 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"name": "autopull",
"description": "Bash script that auto-creates Pull Requests for a given repo.",
"repository": "https://github.com/nbio/autopull",
"keywords": ["github"],
"env": {
"AP_REPO": {
"description": "GitHub repository to auto-update, in the form of user/repo.",
"value": ""
},
"AP_BRANCH": {
"description": "Branch to check out.",
"value": "master",
"required": false
},
"AP_SETUP_CMD": {
"description": "Optional command to run before running the update command, e.g. for installing dependencies.",
"required": false
},
"AP_CMD": {
"description": "Update command that mutates the repository.",
"required": false
},
"GH_USER": {
"description": "GitHub username (yours or a bot)."
},
"GH_TOKEN": {
"description": "GitHub access token."
},
"GIT_AUTHOR_NAME": {
"description": "Name of the user or robot doing the committing."
},
"GIT_COMMITTER_NAME": {
"description": "Name of the user or robot doing the committing."
},
"GIT_AUTHOR_EMAIL": {
"description": "Email address of the user or robot doing the committing."
},
"GIT_COMMITTER_EMAIL": {
"description": "Email address of the user or robot doing the committing."
}
},
"addons": [
"scheduler:standard"
]
}