Skip to content

Commit

Permalink
Merge pull request #275 from junpataleta/adjust_queues_manager
Browse files Browse the repository at this point in the history
Move issues to the current queue by Rank
  • Loading branch information
ilyatregubov authored Jul 26, 2023
2 parents e0ba650 + 37a67fd commit 6ace05a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 2 additions & 4 deletions tracker_automations/continuous_manage_queues/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ function run_A3a() {
# Get an ordered list of issues in the candidate queue.
${basereq} --action getIssueList \
--jql "filter=14000 \
ORDER BY 'Integration priority' DESC, \
Rank ASC" \
ORDER BY Rank ASC" \
--file "${resultfile}"

# Iterate over found issues, moving up to $movemax of them to the current queue (cleaning integrator and tester).
Expand Down Expand Up @@ -231,8 +230,7 @@ function run_B1b() {
# Get an ordered list of issues in the candidate queue.
${basereq} --action getIssueList \
--jql "filter=14000 \
ORDER BY 'Integration priority' DESC, \
Rank ASC" \
ORDER BY Rank ASC" \
--file "${resultfile}"

# Iterate over found issues, moving up to $movemax of them to the current queue (cleaning integrator and tester).
Expand Down
3 changes: 1 addition & 2 deletions tracker_automations/normal_manage_queues/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ function run_B() {
# Get an ordered list of up to issues in the candidate queue.
${basereq} --action getIssueList \
--jql "filter=14000 \
ORDER BY 'Integration priority' DESC, \
Rank ASC" \
ORDER BY Rank ASC" \
--file "${resultfile}"

# Iterate over found issues, moving up to $movemax of them to the current queue (cleaning integrator and tester).
Expand Down

0 comments on commit 6ace05a

Please sign in to comment.