-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
34 lines (34 loc) · 1021 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
30
31
32
33
34
{
"name": "JIRA Intercom Webhook",
"description": "A web service to connect JIRA tickets and Intercom conversations",
"keywords": [
"jira",
"intercom",
"atlassian",
"webhook"
],
"website": "https://github.com/kconarro14/jira_intercom_webhook",
"repository": "https://github.com/kconarro14/jira_intercom_webhook",
"env": {
"APP_USERNAME": {
"description": "Username used for basic auth",
"generator": "secret"
},
"APP_PASSWORD": {
"description": "Password used for basic auth",
"generator": "secret"
},
"INTERCOM_API_KEY": {
"description": "API key for your Intercom account",
"value": "intercom_api_key"
},
"INTERCOM_ADMIN_ID": {
"description": "notes added by the webhook will be attributed to this user in Intercom",
"value": "intercom_admin_id"
},
"JIRA_HOSTNAME": {
"description": "hostname for your JIRA instance e.g. companyxyz.atlassian.net",
"value": "example.atlassian.net"
}
}
}