1+ const LABELS_TO_ADD = [
2+ { name : 'Priority: Highest' , color : 'b60205' , priority : 1 } ,
3+ { name : 'Priority: High' , color : 'fef2c0' , priority : 2 } ,
4+ { name : 'Priority: Medium' , color : 'd4c5f9' , priority : 3 } ,
5+ { name : 'Priority: Low' , color : 'd4c5f9' , priority : 4 } ,
6+ { name : 'Priority: Lowest' , color : 'ededed' , priority : 5 } ,
7+ { name : 'Category: Backend' , color : 'c2e0c6' , priority : null } ,
8+ { name : 'Category: Business/Meetings' , color : '0e8a16' , priority : null } ,
9+ { name : 'Category: DevOps' , color : 'fef2c0' , priority : null } ,
10+ { name : 'Category: Frontend' , color : 'bfdadc' , priority : null } ,
11+ { name : 'Category: Infrastructure' , color : 'f0e68c' , priority : null } ,
12+ { name : 'Category: Report' , color : '40e0d0' , priority : null } ,
13+ { name : 'Category: Unit test' , color : 'ededed' , priority : null } ,
14+ { name : 'Level: Easy' , color : '48d1cc' , priority : null } ,
15+ { name : 'Level: Medium' , color : '20b2aa' , priority : null } ,
16+ { name : 'Level: Hard' , color : '008b8b' , priority : null } ,
17+ { name : 'Stage: Analysis' , color : 'e6e6e6' , priority : null } ,
18+ { name : 'Stage: Backlog' , color : 'ededed' , priority : null } ,
19+ { name : 'Stage: Cancelled' , color : '000000' , priority : null } ,
20+ { name : 'Stage: In progress' , color : 'fbca04' , priority : null } ,
21+ { name : 'Stage: Review' , color : '0052cc' , priority : null } ,
22+ { name : 'Stage: Testing' , color : 'e616e6' , priority : null } ,
23+ { name : 'Status: Blocked' , color : 'd93f0b' , priority : null } ,
24+ { name : 'Status: Duplicated' , color : 'c5def5' , priority : null } ,
25+ { name : 'Status: Impediment' , color : 'b60205' , priority : null } ,
26+ { name : 'Status: Needs Fixing' , color : 'ff8c00' , priority : null } ,
27+ { name : 'Type: Bug' , color : 'fc2929' , priority : null } ,
28+ { name : 'Type: Improvement' , color : '84b6eb' , priority : null } ,
29+ { name : 'Type: New feature' , color : '0052cc' , priority : null } ,
30+ { name : 'Type: Sub-task' , color : 'ededed' , priority : null } ,
31+ ] ;
32+
33+ export default LABELS_TO_ADD ;
0 commit comments