This repository has been archived by the owner on Sep 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathapp.json
76 lines (75 loc) · 2.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pr-police",
"description": "A slack bot that reminds you of open PRs for review in your chosen repos",
"repository": "https://github.com/Talkdesk/pr-police",
"keywords": ["pull", "request", "police", "github", "node", "slackbot", "slack"],
"logo": "https://raw.githubusercontent.com/Talkdesk/pr-police/master/images/badge-white-small.png",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"env": {
"DAYS_TO_RUN": {
"description": "Which days of the week to run on (locale-specific), comma-separated",
"value": "Monday,Tuesday,Wednesday,Thursday,Friday"
},
"DEBUG": {
"description": "Debug flag to enable more verbose logging",
"value": false
},
"GH_TOKEN": {
"description": "Github account token to access needed repositories",
"value": "secret"
},
"SLACK_TOKEN": {
"description": "Slack token for bot",
"value": "secret"
},
"GH_REPOS": {
"description": "Repositories to watch in user/repo format, comma separated",
"value": "johndoe/somerepo,johndoe/anotherrepo"
},
"GH_EXCLUDE_LABELS": {
"description": "Repository labels that will exclude pull requests, comma-separated. Supercedes GH_LABELS",
"value": "",
"required": false
},
"GH_LABELS": {
"description": "Repository labels to filter pull requests, comma separated",
"value": "",
"required": false
},
"SLACK_CHANNELS": {
"description": "Slack channels to post the announcements, comma separated. Required if SLACK_GROUPS is empty.",
"value": "",
"required": false
},
"SLACK_GROUPS": {
"description": "Slack private groups to post the announcements, comma separated. Required if SLACK_CHANNEL is empty.",
"value": "",
"required": false
},
"SLACK_BOT_NAME": {
"description": "The name of the bot on your slack organization",
"value": "",
"required": false
},
"SLACK_BOT_ICON": {
"description": "URL of the bot icon to show when posting messages",
"value": "",
"required": false
},
"TIMES_TO_RUN": {
"description": "What times of day to run (24-hour format), comma-separated",
"value": "0900",
"required": false
},
"TZ": {
"description": "The timezone the server should use. Heroku default is UTC. Uses tz database timezone format. Example: 'America/Los_Angeles'",
"value": "",
"required": false
}
}
}