It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
i want to execute a workflow transition inside a jira issue listener.
If the issue reaches for example in progress than it should excute an action and if the action succed it should move to a certain stage. This action should be triggered inside the issue listener.
Inside the issue ListenerClass:
@EventListener
public void onIssueEvent(IssueEvent issueEvent) {
Issue issue = issueEvent.getIssue();
if(issue.getStatus().getName().equals("In Progress")){
executeTransition(user, issue, actionId);
}
}
public static void executeTransition(ApplicationUser user, Issue issue, int actionId) {
IssueService issueService = ComponentAccessor.getIssueService();
IssueInputParameters issueInputParameters = issueService.newIssueInputParameters();
TransitionValidationResult transitionValidationResult = issueService.validateTransition(user, issue.getId(),
actionId, issueInputParameters);
if (transitionValidationResult.isValid()) {
IssueResult transitionResult = issueService.transition(user, transitionValidationResult);
if (!transitionResult.isValid()) {
throw new RuntimeException("Transition"+actionId+" not valid");
}
}
}
The strange thing is that when i try to execute it on another issue(which is not the issue that is currently in the issue listener, this works perfectly fine).
Also the history is updating, but on the view the status doesnt change.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs