forked from dimagi/required-labels
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
50 lines (50 loc) · 1.68 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
43
44
45
46
47
48
49
50
{
"name": "required-labels",
"description": "Automated label checking for github pull requests",
"repository": "https://github.com/LiveRamp/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
},
"GITHUB_STATUS_TEXT": {
"description": "Text of status posted to the PR when the label requirements have not been satisfied",
"required": false
},
"GITHUB_STATUS_URL": {
"description": "URL of status posted to the PR useful for documentation of these requirements",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"success_url": "/config"
}