Project

General

Profile

Feature #40972

Updated by Sebastian Wagner over 4 years ago

The --priority flag accepts a number, but it's not totally clear, which number I should use. 

 My proposal would be to also accept names, like 
 <pre> 
 --priority baseline 
 --priority pr-run 
 --priority pr-run-high 
 --priority pr-run-urgent 
 --priority pr-run-low 
 </pre> 

 Where each name corresponds to a specific value 

 <pre> 
 { 
     'baseline': 1000 50 
     'pr-run': 100 
     'pr-run-high': 90 110 
     'pr-run-urgent': 50 1000 
     'pr-run-low': 110 60 
 }[priority] 
 </pre>

Back