-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.45 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
{
"name": "GithubOrgNotice",
"keywords": [
"GitHub"
],
"env": {
"GITHUB_ORGANIZATION": {
"description": "Your GitHub organization name"
},
"GITHUB_ACCESS_TOKEN": {
"description": "Your GitHub access token. To get new token with `repo` scope, visit https://github.com/settings/tokens/new"
},
"SKIP_DAYS": {
"value": "Sat,Sun",
"description": "Daynames to be skipped"
},
"SLACK_CHANNEL_FOR_PERMISSION": {
"description": "Slack channel for permission checker (ex. #hoge)"
},
"SLACK_CHANNEL_FOR_TFA": {
"description": "Slack channel for TFA checker (ex. #huga)"
},
"SLACK_ICON_EMOJI": {
"description": "Slack icon ex. :github:"
},
"SLACK_TITLE_FOR_PERMISSION": {
"description": "Slack message title for permission checker"
},
"SLACK_TITLE_FOR_TFA": {
"description": "Slack message title for TFA checker"
},
"SLACK_WEBHOOK_URL": {
"description": "Slack Incoming Webhook URL"
},
"TEAMS_PERMISSION": {
"description": "Teams permission for permission checker (ex. PowerUsers=admin,Users=push)"
},
"IGNORE_USERS": {
"description": "Ignore users for TFA checker (ex. user1,user2)"
}
},
"addons": [
{
"plan": "scheduler:standard"
}
]
}