Jenkins, by default, sorts tasks in ascending order. 1,2,3, A, b, c, etc. However, you can use this Dashboard plugin to provide something closer to what you are looking for.
https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View
In addition, there is a plugin that sorts tasks in the queue based on priority.
https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin
I ran into a JIRA problem for Jenkins that suggested sorting in descending order, but just moving the order might be something you want to add to JIRA as a problem or consider creating a plugin for this purpose.
https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial
One simple task would be to add a number to the beginning of the job names to indicate where they should be in the list.
1 - Work 2
2 - Work 3
3 - Work 1
source share