-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
49 lines (49 loc) · 1.43 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
{
"name": "bitbucket-slack-pr-hook",
"description": "Receive Pull Requests notifications from Bitbucket and send them to Slack.",
"keywords": [
"productivity",
"slack",
"bitbucket",
"pull requests"
],
"repository": "https://github.com/lfilho/bitbucket-slack-pr-hook",
"env": {
"SLACK_WEBHOOK": {
"description": "The slack incoming webhook url.",
"required": true
},
"SLACK_USERNAME": {
"description": "The slack bot's username. NOTE: Setting this will override integration settings.",
"required": false
},
"SLACK_CHANNEL": {
"description": "The slack channel to send notifications to. NOTE: Setting this will override integration settings.",
"required": false
},
"MENTION_REVIEWERS": {
"description": "Set to true if you want to mention reviewers in slack channel.",
"required": false
},
"HEX_INFO": {
"description": "Hex Color for Merge & Approve",
"value": "#3498db",
"required": false
},
"HEX_DANGER": {
"description": "Hex Color for Declined",
"value": "#e74c3c",
"required": false
},
"HEX_WARNING": {
"description": "Hex Color for Unapprove, Comment: Created, Comment: Deleted, Comment: Updated",
"value": "#f1c40f",
"required": false
},
"HEX_SUCCESS": {
"description": "Hex Color for Merge & Approve",
"value": "#2ecc71",
"required": false
}
}
}