-
Notifications
You must be signed in to change notification settings - Fork 20
/
app.json
36 lines (36 loc) · 1.32 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
{
"name": "PagerDuty to JIRA Connector",
"description": "Create JIRA tickets when a PagerDuty incident has been created.",
"repository": "https://github.com/ryanhoskin/pd2jira",
"keywords": [
"pagerduty",
"JIRA"
],
"env": {
"JIRA_USERNAME": {
"description": "The username of the JIRA user that will update the JIRA ticket."
},
"JIRA_PASSWORD": {
"description": "The password for your JIRA user."
},
"JIRA_URL": {
"description": "The URL to access your JIRA installation (e.g. https://mycompany.com OR https://mycompany.atlassian.net)."
},
"JIRA_PROJECT": {
"description": "The project that you would like the ticket created in JIRA. This field is the prefix for the project (e.g. 'SUP')."
},
"JIRA_ISSUE_TYPE": {
"description": "The type of issue that you'd like created within JIRA (e.g. Bug, Deliverable, etc...)."
},
"PAGERDUTY_API_TOKEN": {
"description": "Your 20-character alphanumeric PagerDuty API Access token."
},
"PAGERDUTY_SUBDOMAIN": {
"description": "The name of your PagerDuty subdomain, as it appears in the URL."
},
"WEB_CONCURRENCY": {
"description": "Please don't change this unless you know what you are doing. This prevents duplicate Jira issues from being created.",
"value": "1"
}
}
}