forked from Sevge/bb-go
-
Notifications
You must be signed in to change notification settings - Fork 121
/
labels.yaml
2159 lines (2159 loc) · 68.3 KB
/
labels.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
default:
labels:
- addedBy: approvers
color: 0ffa16
description: Indicates a PR has been approved by an approver from all required
OWNERS files.
name: approved
prowPlugin: approve
target: prs
- addedBy: humans
color: fef2c0
description: Indicates a cherrypick PR into a release branch has been approved
by the release branch manager.
name: cherrypick-approved
target: prs
- addedBy: humans
color: fef2c0
description: Denotes a PR to master as a candidate for cherry picking into a release
branch.
name: cherrypick-candidate
target: prs
- addedBy: humans
color: d455d0
description: Indicates an issue is a duplicate of other open issue.
name: triage/duplicate
target: both
- addedBy: humans
color: d455d0
description: Indicates an issue needs more information in order to work on it.
name: triage/needs-information
target: both
- addedBy: humans
color: d455d0
description: Indicates an issue can not be reproduced as described.
name: triage/not-reproducible
target: both
- addedBy: humans
color: d455d0
description: Indicates an issue that is a support question.
name: triage/support
target: both
- addedBy: humans
color: d455d0
description: Indicates an issue that can not or will not be resolved.
name: triage/unresolved
target: both
- addedBy: anyone
color: c0ff4a
description: Denotes an issue or PR intended to be handled by the code of conduct
committee.
name: committee/conduct
prowPlugin: label
target: both
- addedBy: anyone
color: c0ff4a
description: Denotes an issue or PR intended to be handled by the steering committee.
name: committee/steering
prowPlugin: label
target: both
- addedBy: prow
color: e11d21
description: Indicates the PR's author has not signed the CNCF CLA.
name: 'cncf-cla: no'
prowPlugin: cla
target: prs
- addedBy: prow
color: bfe5bf
description: Indicates the PR's author has signed the CNCF CLA.
name: 'cncf-cla: yes'
prowPlugin: cla
target: prs
- addedBy: humans
color: e11d21
description: DEPRECATED. Indicates that a PR should not merge. Label can only
be manually applied/removed.
name: do-not-merge
target: prs
- addedBy: prow
color: e11d21
description: Indicates that a PR should not merge because it touches files in
blocked paths.
name: do-not-merge/blocked-paths
prowPlugin: blockade
target: prs
- addedBy: mungegithub cherrypick-label-unapproved munger
color: e11d21
description: Indicates that a PR is not yet approved to merge into a release branch.
name: do-not-merge/cherry-pick-not-approved
target: prs
- addedBy: anyone
color: e11d21
description: Indicates that a PR should not merge because someone has issued a
/hold command.
name: do-not-merge/hold
prowPlugin: hold
target: prs
- addedBy: prow
color: e11d21
description: Indicates that a PR should not merge because it has an invalid OWNERS
file in it.
name: do-not-merge/invalid-owners-file
prowPlugin: verify-owners
target: prs
- addedBy: prow
color: e11d21
description: Indicates that a PR should not merge because it's missing one of
the release note labels.
name: do-not-merge/release-note-label-needed
prowPlugin: releasenote
target: prs
- addedBy: prow
color: e11d21
description: Indicates that a PR should not merge because it is a work in progress.
name: do-not-merge/work-in-progress
prowPlugin: wip
target: prs
- addedBy: anyone
color: 7057ff
description: Denotes an issue ready for a new contributor, according to the "help
wanted" guidelines.
name: good first issue
prowPlugin: help
target: issues
- addedBy: anyone
color: 006b75
description: Denotes an issue that needs help from a contributor. Must meet "help
wanted" guidelines.
name: help wanted
prowPlugin: help
target: issues
- addedBy: anyone
color: e11d21
description: Categorizes issue or PR as related to a bug.
name: kind/bug
prowPlugin: label
target: both
- addedBy: anyone
color: c7def8
description: Categorizes issue or PR as related to cleaning up code, process,
or technical debt.
name: kind/cleanup
prowPlugin: label
target: both
- addedBy: anyone
color: c7def8
description: Categorizes issue or PR as related to design.
name: kind/design
prowPlugin: label
target: both
- addedBy: anyone
color: c7def8
description: Categorizes issue or PR as related to documentation.
name: kind/documentation
prowPlugin: label
target: both
- addedBy: anyone
color: e11d21
description: Categorizes issue or PR as related to a consistently or frequently
failing test.
name: kind/failing-test
prowPlugin: label
target: both
- addedBy: anyone
color: c7def8
description: Categorizes issue or PR as related to a new feature.
name: kind/feature
prowPlugin: label
target: both
- addedBy: anyone
color: f7c6c7
description: Categorizes issue or PR as related to a flaky test.
name: kind/flake
prowPlugin: label
target: both
- addedBy: reviewers or members
color: 15dd18
description: Indicates that a PR is ready to be merged.
name: lgtm
prowPlugin: lgtm
target: prs
- addedBy: anyone
color: d3e2f0
description: Indicates that an issue or PR should not be auto-closed due to staleness.
name: lifecycle/frozen
prowPlugin: lifecycle
target: both
- addedBy: anyone
color: 8fc951
description: Indicates that an issue or PR is actively being worked on by a contributor.
name: lifecycle/active
prowPlugin: lifecycle
target: both
- addedBy: anyone or [@fejta-bot](https://github.com/fejta-bot) via [periodic-test-infra-rotten
prowjob](https://prow.k8s.io/?job=periodic-test-infra-rotten)
color: "604460"
description: Denotes an issue or PR that has aged beyond stale and will be auto-closed.
name: lifecycle/rotten
prowPlugin: lifecycle
target: both
- addedBy: anyone or [@fejta-bot](https://github.com/fejta-bot) via [periodic-test-infra-stale
prowjob](https://prow.k8s.io/?job=periodic-test-infra-stale)
color: "795548"
description: Denotes an issue or PR has remained open with no activity and has
become stale.
name: lifecycle/stale
target: ""
- addedBy: prow
color: b60205
description: Indicates a PR that requires an org member to verify it is safe to
test.
name: needs-ok-to-test
prowPlugin: trigger
target: prs
- addedBy: prow
color: BDBDBD
description: Indicates a PR cannot be merged because it has merge conflicts with
HEAD.
name: needs-rebase
prowPlugin: needs-rebase
target: prs
- addedBy: anyone
color: fef2c0
description: Lowest priority. Possibly useful, but not yet enough support to actually
get it done.
name: priority/awaiting-more-evidence
prowPlugin: label
target: both
- addedBy: anyone
color: fbca04
description: Higher priority than priority/awaiting-more-evidence.
name: priority/backlog
prowPlugin: label
target: both
- addedBy: anyone
color: e11d21
description: Highest priority. Must be actively worked on as someone's top priority
right now.
name: priority/critical-urgent
prowPlugin: label
target: both
- addedBy: anyone
color: eb6420
description: Important over the long term, but may not be staffed and/or may need
multiple releases to complete.
name: priority/important-longterm
prowPlugin: label
target: both
- addedBy: anyone
color: eb6420
description: Must be staffed and worked on either currently, or very soon, ideally
in time for the next release.
name: priority/important-soon
prowPlugin: label
target: both
- addedBy: humans
color: ffaa00
description: DEPRECATED.
name: queue/blocks-others
target: prs
- addedBy: humans
color: ffaa00
description: DEPRECATED.
name: queue/critical-fix
target: prs
- addedBy: humans
color: ffaa00
description: DEPRECATED.
name: queue/fix
target: prs
- addedBy: humans
color: ffaa00
description: DEPRECATED.
name: queue/multiple-rebases
target: prs
- addedBy: prow
color: c2e0c6
description: Denotes a PR that will be considered when it comes time to generate
release notes.
name: release-note
prowPlugin: releasenote
target: prs
- addedBy: prow
color: c2e0c6
description: Denotes a PR that introduces potentially breaking changes that require
user action.
name: release-note-action-required
prowPlugin: releasenote
target: prs
- addedBy: prow or member or author
color: c2e0c6
description: Denotes a PR that doesn't merit a release note.
name: release-note-none
prowPlugin: releasenote
target: prs
- addedBy: humans
color: eb6420
description: Indicates that a PR doesn't need to be retested prior to merge.
name: retest-not-required
target: prs
- addedBy: prow
color: fbca04
description: Indicates that a PR doesn't need to be retested prior to merge because
it only changes docs.
name: retest-not-required-docs-only
prowPlugin: docs-no-retest
target: prs
- addedBy: prow
color: ee9900
description: Denotes a PR that changes 100-499 lines, ignoring generated files.
name: size/L
prowPlugin: size
target: prs
- addedBy: prow
color: eebb00
description: Denotes a PR that changes 30-99 lines, ignoring generated files.
name: size/M
prowPlugin: size
target: prs
- addedBy: prow
color: 77bb00
description: Denotes a PR that changes 10-29 lines, ignoring generated files.
name: size/S
prowPlugin: size
target: prs
- addedBy: prow
color: ee5500
description: Denotes a PR that changes 500-999 lines, ignoring generated files.
name: size/XL
prowPlugin: size
target: prs
- addedBy: prow
color: "009900"
description: Denotes a PR that changes 0-9 lines, ignoring generated files.
name: size/XS
prowPlugin: size
target: prs
- addedBy: prow
color: ee0000
description: Denotes a PR that changes 1000+ lines, ignoring generated files.
name: size/XXL
prowPlugin: size
target: prs
- addedBy: 'members of a configurable github team. default: [@kubernetes/kubernetes-milestone-maintainers](https://github.com/orgs/kubernetes/teams/kubernetes-milestone-maintainers/members)'
color: fef2c0
description: Used during release burndown. Denotes an issue or PR is approved
to be part of the release
name: status/approved-for-milestone
prowPlugin: milestonestatus
target: both
- addedBy: 'members of a configurable github team. default: [@kubernetes/kubernetes-milestone-maintainers](https://github.com/orgs/kubernetes/teams/kubernetes-milestone-maintainers/members)'
color: fef2c0
description: Used during release burndown. Denotes that an issue is actively being
worked.
name: status/in-progress
prowPlugin: milestonestatus
target: both
- addedBy: 'members of a configurable github team. default: [@kubernetes/kubernetes-milestone-maintainers](https://github.com/orgs/kubernetes/teams/kubernetes-milestone-maintainers/members)'
color: fef2c0
description: Used during release burndown. Denotes that a fix for an issue is
actively being reviewed.
name: status/in-review
prowPlugin: milestonestatus
target: both
- addedBy: anyone
color: eb6420
description: library
name: library
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: Live Department
name: live
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: MTC
name: main
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: Ops Department
name: ops
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: EP Department
name: ep
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: Openplatform Department
name: openplatform
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: BBQ Department
name: bbq
prowPlugin: label
target: both
- addedBy: anyone
color: f1f442
description: Video Department
name: video
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: business application
name: business
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: admin
name: admin
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: common
name: common
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: infra
name: infra
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: interface
name: interface
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: job
name: job
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: service
name: service
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: tool
name: tool
prowPlugin: label
target: both
- addedBy: anyone
color: ffb3a7
description: vendor
name: vendor
prowPlugin: label
target: both
- addedBy: anyone
color: 4B0082
description: create a new project
name: new-project
prowPlugin: label
target: both
- addedBy: label
color: 0052cc
description: Issues or PRs related to config
name: area/chore
target: both
repos:
platform/go-common:
labels:
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/ep/melloi
name: admin/ep/melloi
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/ep/merlin
name: admin/ep/merlin
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/ep/saga
name: admin/ep/saga
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/ep/tapd
name: admin/ep/tapd
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/live/live-admin
name: admin/live/live-admin
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/activity
name: admin/main/activity
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/aegis
name: admin/main/aegis
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/answer
name: admin/main/answer
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/apm
name: admin/main/apm
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/app
name: admin/main/app
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/appstatic
name: admin/main/appstatic
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/bfs
name: admin/main/bfs
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/block
name: admin/main/block
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/cache
name: admin/main/cache
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/card
name: admin/main/card
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/config
name: admin/main/config
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/coupon
name: admin/main/coupon
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/creative
name: admin/main/creative
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/credit
name: admin/main/credit
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/dm
name: admin/main/dm
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/esports
name: admin/main/esports
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/feed
name: admin/main/feed
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/filter
name: admin/main/filter
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/growup
name: admin/main/growup
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/laser
name: admin/main/laser
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/macross
name: admin/main/macross
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/manager
name: admin/main/manager
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/mcn
name: admin/main/mcn
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/member
name: admin/main/member
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/open
name: admin/main/open
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/passport
name: admin/main/passport
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/point
name: admin/main/point
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/push
name: admin/main/push
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/relation
name: admin/main/relation
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/reply
name: admin/main/reply
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/search
name: admin/main/search
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/sms
name: admin/main/sms
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/space
name: admin/main/space
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/spy
name: admin/main/spy
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/tag
name: admin/main/tag
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/tv
name: admin/main/tv
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/up
name: admin/main/up
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/up-rating
name: admin/main/up-rating
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/upload
name: admin/main/upload
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/usersuit
name: admin/main/usersuit
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/videoup
name: admin/main/videoup
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/videoup-task
name: admin/main/videoup-task
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/vip
name: admin/main/vip
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/main/workflow
name: admin/main/workflow
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to admin/openplatform/sug
name: admin/openplatform/sug
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/bbq/bullet
name: interface/bbq/bullet
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/bbq/video
name: interface/bbq/video
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/bbq/wechat
name: interface/bbq/wechat
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/app-blink
name: interface/live/app-blink
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/app-interface
name: interface/live/app-interface
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/app-room
name: interface/live/app-room
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/app-ucenter
name: interface/live/app-ucenter
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/live-demo
name: interface/live/live-demo
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/lottery-interface
name: interface/live/lottery-interface
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/push-live
name: interface/live/push-live
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/web-room
name: interface/live/web-room
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/live/web-ucenter
name: interface/live/web-ucenter
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/account
name: interface/main/account
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/activity
name: interface/main/activity
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/answer
name: interface/main/answer
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-card
name: interface/main/app-card
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-channel
name: interface/main/app-channel
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-feed
name: interface/main/app-feed
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-interface
name: interface/main/app-interface
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-intl
name: interface/main/app-intl
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-player
name: interface/main/app-player
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-resource
name: interface/main/app-resource
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-show
name: interface/main/app-show
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-tag
name: interface/main/app-tag
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-view
name: interface/main/app-view
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/app-wall
name: interface/main/app-wall
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/broadcast
name: interface/main/broadcast
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/captcha
name: interface/main/captcha
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/creative
name: interface/main/creative
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/credit
name: interface/main/credit
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/dm
name: interface/main/dm
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/dm2
name: interface/main/dm2
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/esports
name: interface/main/esports
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/favorite
name: interface/main/favorite
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/feedback
name: interface/main/feedback
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/growup
name: interface/main/growup
prowPlugin: label
target: both
- addedBy: anyone
color: 0052cc
description: Categorizes an issue or PR as relevant to interface/main/history
name: interface/main/history
prowPlugin: label