-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfigExample.xml
More file actions
48 lines (48 loc) · 1.84 KB
/
configExample.xml
File metadata and controls
48 lines (48 loc) · 1.84 KB
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
<config>
<jira>
<username></username>
<password></password>
<url>https://my-org.atlassian.net/rest/api/2/</url>
<!-- Custom field in JIRA that taxes a single text input -->
<githubIssueNumberField>customfield_10025</githubIssueNumberField>
<!-- Custom field in Jira that is a pull-down / single select -->
<githubRepoNameField>customfield_10600</githubRepoNameField>
<!-- Custom field in Jira that is the Epic Link (regualr issues) -->
<epicLinkField>customfield_10007</epicLinkField>
<!-- Custom field in Jira that is the Epic Name (epics) -->
<epicNameField>customfield_10008</epicNameField>
</jira>
<github>
<username></username>
<password></password>
<url>https://api.github.com/repos/</url>
</github>
<repositories>
<repository>
<githubName>riak-java-client</githubName>
<githubOwner>basho</githubOwner>
<!-- Name in your githubRepoNameField -->
<jiraName>Java Client</jiraName>
<!-- Enables importing existing issues to JIRA on next comment -->
<importOnComment>true</importOnComment>
<!-- Enables the Epic mapping feature -->
<mapEpicsToMilestones>true</mapEpicsToMilestones>
<!-- Additional fields in JIRA you want populated when an issue
is created in Github -->
<jiraFields>
<field type="object">
<name>customfield_10300</name>
<key>value</key>
<value>Client</value>
</field>
</jiraFields>
<jiraProjectKey>CLIENTS</jiraProjectKey>
</repository>
</repositories>
<userMappings>
<userMap>
<github>broach</github>
<jira>roach</jira>
</userMap>
</userMappings>
</config>