forked from skye2k2/pr-police
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.49 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"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",
"env": {
"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": "john/somerepo,doe/anotherrepo"
},
"GH_LABELS": {
"description": "Repository labels to filter pull requests, comma separated",
"value": ""
},
"SLACK_CHANNELS": {
"description": "Slack channels to post the announcements, comma separated",
"value": ""
},
"SLACK_GROUPS": {
"description": "Slack private groups to post the announcements, comma separated",
"value": ""
},
"CHECK_INTERVAL": {
"description": "Time interval to check for new pull requests, in milliseconds",
"value": "3600000"
},
"SLACK_BOT_NAME": {
"description": "The name of the bot on your slack organization",
"value": ""
},
"SLACK_BOT_ICON": {
"description": "URL of the bot icon to show when posting messages",
"value": ""
}
}
}