Skip to content

Commit a846c67

Browse files
Adding priority into JIRA
1 parent ef66f10 commit a846c67

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/redhat/gitparser/GitParser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ public void parse(File outputFile, String from, String to) throws Exception {
309309
String issuetype = getField(object, "issuetype");
310310
String status = getField(object, "status");
311311
String resolution = getField(object, "resolution");
312-
bufferJIRA.append(makeALink(issuetype + "/" + resolution + "/" + status, jiraBrowseURI + jiraIteration));
312+
String priority = getField(object, "priority");
313+
bufferJIRA.append(makeALink(priority + "/" + issuetype + "/" + resolution + "/" + status, jiraBrowseURI + jiraIteration));
313314
} else {
314315
bufferJIRA.append(makeALink(jiraIteration, jiraBrowseURI + jiraIteration));
315316
}

0 commit comments

Comments
 (0)