Skip to content

Commit

Permalink
Adding priority into JIRA
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Jun 19, 2018
1 parent ef66f10 commit a846c67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/redhat/gitparser/GitParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ public void parse(File outputFile, String from, String to) throws Exception {
String issuetype = getField(object, "issuetype");
String status = getField(object, "status");
String resolution = getField(object, "resolution");
bufferJIRA.append(makeALink(issuetype + "/" + resolution + "/" + status, jiraBrowseURI + jiraIteration));
String priority = getField(object, "priority");
bufferJIRA.append(makeALink(priority + "/" + issuetype + "/" + resolution + "/" + status, jiraBrowseURI + jiraIteration));
} else {
bufferJIRA.append(makeALink(jiraIteration, jiraBrowseURI + jiraIteration));
}
Expand Down

0 comments on commit a846c67

Please sign in to comment.