-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
44 lines (44 loc) · 1.38 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
{
"name": "streamdevs-webhook",
"logo": "https://github.com/streamdevs/webhook/blob/master/streamdevs-webhook-logo.png?raw=true",
"description": "An HTTP Webhook to forward GitHub events to StreamLabs",
"repository": "https://github.com/streamdevs/webhook",
"keywords": ["github", "webhooks", "twitch", "streaming"],
"scripts": {
"postdeploy": "yarn install"
},
"success_url": "/",
"image": "heroku/nodejs",
"env": {
"STREAMLABS_TOKEN": {
"description": "A token to use the StreamLabs API.",
"value": "",
"required": true
},
"TWITCH_BOT_NAME": {
"description": "The account (username) that the chatbot uses to send chat messages.",
"value": "",
"required": true
},
"TWITCH_BOT_TOKEN": {
"description": "Generate this with https://twitchapps.com/tmi/.",
"value": "",
"required": true
},
"TWITCH_BOT_CHANNEL": {
"description": "The Twitch channel name where you want to run the bot.",
"value": "",
"required": true
},
"NOTIFY_CHECK_RUNS_FOR": {
"description": "Comma-separated list of branches to notify Check Runs for. Leave empty to notify for any branch",
"value": "",
"required": false
},
"NOTIFY_ISSUES_ASSIGNED_TO": {
"description": "A comma-separated list of GitHub user names. Only issues assigned to these users will be notified or leave it empty to receive all notifications.",
"value": "",
"required": false
}
}
}