-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
27 lines (27 loc) · 851 Bytes
/
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
{
"name": "slack-archivebot",
"description": "Automatically archive empty and inactive public channels.",
"repository": "https://github.com/timblair/slack-archivebot",
"logo": "https://babeljs.io/images/users/slack.svg",
"success_url": "/welcome",
"env": {
"ARCHIVEBOT_SLACK_TOKEN": {
"description": "The Slack Web API key to use (must be a regular user account, not a bot)."
},
"ARCHIVEBOT_INACTIVITY_DAYS": {
"description": "The number of days' inactivity after which to archive a channel.",
"value": "30"
},
"ARCHIVEBOT_NOTIFY": {
"description": "A Slack user or channel (e.g. #general or @tblair) to notify when something goes wrong."
}
},
"addons": [
"scheduler:standard"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-go.git"
}
]
}