This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
forked from electron/sheriff
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
78 lines (78 loc) · 2.11 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
77
78
{
"name": "Electron Sheriff",
"description": "Controls org permissions and monitor for suspicious activity",
"keywords": [
"github",
"slack",
"gsuite",
"permissions",
"alerting"
],
"website": "https://github.com/electron/sheriff",
"repository": "https://github.com/electron/sheriff",
"logo": "https://avatars.slack-edge.com/2019-11-21/844347353604_500f5a5483db67de7160_512.png",
"success_url": "https://github.com/electron/sheriff",
"scripts": {},
"env": {
"GITHUB_WEBHOOK_SECRET": {
"description": "The secret for the org-wide webhook",
"required": true
},
"PERMISSIONS_FILE_ORG": {
"description": "The name of the GitHub org where you put the `.permissions` repository",
"required": true
},
"SHERIFF_HOST_URL": {
"description": "The fully qualified URL for your deployed app",
"required": true
},
"SLACK_TOKEN": {
"description": "The token for your Slack App",
"required": true
},
"SLACK_WEBHOOK_URL": {
"description": "The webhook URL for your Slack App",
"required": true
},
"GSUITE_CREDENTIALS": {
"description": "GSuite credentials",
"required": false
},
"GSUITE_TOKEN": {
"description": "GSuite authentication token",
"required": false
},
"SHERIFF_GSUITE_DOMAIN": {
"description": "The primary domain of your GSuite account",
"required": false
},
"SHERIFF_IMPORTANT_BRANCH": {
"description": "A regular expression to match important branches you want to monitor for deletion",
"required": false
},
"SHERIFF_PLUGINS": {
"description": "A comma separated list of plugins to enable. Possible plugins are `gsuite` and `slack`",
"required": false
},
"SHERIFF_SLACK_DOMAIN": {
"description": "The \"domain\" part of `{domain}.slack.com` for your Slack instance",
"required": false
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
{
"plan": "scheduler:standard"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"stack": "heroku-18"
}