-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
42 lines (42 loc) · 1.32 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "required-labels",
"description": "Automated label checking for github pull requests",
"repository": "https://github.com/dimagi/required-labels",
"keywords": [
"github",
"labels",
"status"
],
"env": {
"REQUIRED_LABELS_ANY": {
"description": "At least one of these labels must be present on the PR",
"required": false
},
"REQUIRED_LABELS_ALL": {
"description": "All of these labels must be present on the PR",
"required": false
},
"BANNED_LABELS": {
"description": "None of these labels should be present on the PR",
"required": false
},
"GITHUB_TOKEN": {
"description": "A github user token that has access to your repo, either use this or provide a GITHUB_USER and a GITHUB_PW instead",
"required": false
},
"GITHUB_USER": {
"description": "The username for the github user that will post the status",
"required": false
},
"GITHUB_PW": {
"description": "The password for the github user that will post the status",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"success_url": "/config"
}