Validate the comments using groovy script

Software Asset Management November 5, 2017

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.

 

1 answer

0 votes
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 6, 2017

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

 

Suggest an answer

Log in or Sign up to answer