Automatic rank to top ?

Philippe Aubin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 10, 2014

Could it be possible to setup, for instance, a post function that would rank the issues to top in an agile board ? I am looking for a way to rank to top an Issue than is transitioning in another status (column). 

2 answers

1 accepted

1 vote
Answer accepted
Silviu Burcea
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 10, 2014

Hi Philippe,

 

Yes, it's possible using JJupin Agile plugin. You will have to write a SIL script post function to do that. Don't worry, it's that simple:

rankFirst(key); // key is a predefined variable holding the issue key

Here is the documentation for the rankFirst routine(and the rest of the goodies): http://confluence.kepler-rominfo.com/display/JJUPA30/rankFirst

 

You can decide which issues should be ranked first. Let's assume you want to move first only the bug tickets. Here it is:

if (issueType == "Bug") { // yep, this is also predefined
  rankFirst(key);
}

 

 

Best regards,

Silviu

0 votes
Philippe Aubin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 11, 2014

Thank you so much Silviu! You saved my life laugh

Suggest an answer

Log in or Sign up to answer