forked from slugbay/slack-welcome-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 1020 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
28
29
{
"name": "Slack Welcome Bot",
"description": "This Slack application connects to your slack team and greets new joiners with a sweet custom message",
"keywords": [
"productivity",
"slack",
"greetings",
"bot",
"resources",
"developers",
"slugbay",
"sluggy"
],
"website": "https://www.slugbay.com",
"repository": "https://github.com/slugbay/slack-welcome-bot",
"logo": "https://github.com/slugbay/slack-welcome-bot/raw/master/logo.png",
"env": {
"SLACK_TOKEN": {
"description": "Your Slack API Token",
"value": "XXX-XXXXXXXXXX-XXXXXXXXX",
"required": "true"
},
"SLACK_MESSAGE": {
"description": "Your Welcome message (JSON)",
"value": "{\"text\": \"Hey {fist_name} {last_name} akka *{username}*,\n\nI'm a welcome bot. Welcome to our Slack team! :tada:\nLet me give you some instructions.\"}",
"required": "true"
}
}
}