I need to auto transition an issue based on comments.
for ex:
1. if the comment value is approved it need to move the status to approved.
2. If the comment value is rejected it need to move the status to rejected.
i need a groovy script to allowed the listeners to move the status.
This should be straightforward to implement
You can use the built-in script listener "Fast track issue on transition"
In this you can configure the listener to trigger it for the "issue commented" event for a specific project.
Based on the condition (Approve or Reject) you will need to add 2 listeners which fire two different transitions (approve in case of approve and so on )
In the conditions section you can check the "body" (for text "approve or "reject") of the last comment using the code snippet
ComponentAccessor.getCommentManager().getComments(issue).last().body
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.