Using Java Jira client, my code to add labels overrides existing ones. How can I update the issue to append a new label? See revised code:
public void appendTag(String ticketId) {
Map<String, Object> modifications = new HashMap<>();
modifications.put("labels", Arrays.asList("NEW_LABEL"));
JiraIssueModifier modifier = new JiraIssueModifier();
modifier.updateTicket(ticketId, modifications);
}