-
Notifications
You must be signed in to change notification settings - Fork 2
976 lines (945 loc) · 36.3 KB
/
backlog_checker.yml
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
---
name: Backlog Limits Checker
on:
#[push]
schedule:
- cron: '*/10 * * * *'
jobs:
check_suse_qa_c_backlog_limits:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: prepare output md file
run: |
rm -f index.md
touch index.md
python backlog_checker.py init
- name: General description
if: always()
run: |
python backlog_checker.py description
env:
text: |
This is the dashboard for Quality Engineering for Containers and Public Cloud.
We are currently working on four projects: Containers, JeOS, WSL, Public Cloud and SLE Micro
* [General team overview](#general_team_overview)
* [Bugs vs Features Backlog Length](#bugs_vs_features_backlog_length)
* [Incoming vs outcoming during the last 30 days](#incoming_vs_outcoming_during_the_last_30_days)
* [Incoming vs outcoming during the last 4 months](#incoming_vs_outcoming_during_the_last_4_months)
* [Backlog Lengths by priority](#backlog_lengths_by_priority)
* [Pickup time alerts](#pickup_time_alerts)
* [Non updated tickets for 15 days](#non_updated_tickets_for_15_days)
* [Tickets in progress with no changes in 15 days](#tickets_in_progress_with_no_changes_in_15_days)
* [Tickets with the status Blocked and Feedback with no changes in 15 days](#tickets_with_the_status_blocked_and_feedback_with_no_changes_in_15_days)
* [No Changes in 15 Days (Blocked and Feedback)](#no_changes_in_15_days_blocked_and_feedback)
* [Abnormalities](#abnormalities)
* [In Progress But Not Assigned](#in_progress_but_not_assigned)
* [Assigned but not started](#assigned_but_not_started)
* [New tickets](#new_tickets)
* [Coordination without subtasks](#coordination_without_subtasks)
* [Epics](#epics)
######################################################################
# General team overview
######################################################################
# Bugs vs Features Backlog Length
- name: Bugs vs Features Backlog Length Containers
if: always()
run: |
python backlog_checker.py comp2 tb_start
env:
category: "General team overview"
header: "Bugs vs Features Backlog Length"
header_description: |
This table compares the number of bugs against the planned tickets.
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Containers"
query1: "Backlog Bugs Length: Containers"
query2: "Backlog Features Length: Containers"
query3: "Backlog Length: Containers"
head1: "Bugs"
head2: "Features"
head3: "Total"
- name: Bugs vs Features Backlog Length JeOS
if: always()
run: |
python backlog_checker.py comp2
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "JeOS"
query1: "Backlog Bugs Length: JeOS"
query2: "Backlog Features Length: JeOS"
query3: "Backlog Length: JeOS"
head1: "Bugs"
head2: "Features"
head3: "Total"
- name: Bugs vs Features Backlog Length WSL
if: always()
run: |
python backlog_checker.py comp2
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "WSL"
query1: "Backlog Bugs Length: WSL"
query2: "Backlog Features Length: WSL"
query3: "Backlog Length: WSL"
head1: "Bugs"
head2: "Features"
head3: "Total"
- name: Bugs vs Features Backlog Length Public Cloud
if: always()
run: |
python backlog_checker.py comp2
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Public Cloud"
query1: "Backlog Bugs Length: Public Cloud"
query2: "Backlog Features Length: Public Cloud"
query3: "Backlog Length: Public Cloud"
head1: "Bugs"
head2: "Features"
head3: "Total"
- name: Bugs vs Features Backlog Length SLE Micro
if: always()
run: |
python backlog_checker.py comp2 tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "SLE Micro"
query1: "Backlog Bugs Length: SLE Micro"
query2: "Backlog Features Length: SLE Micro"
query3: "Backlog Length: SLE Micro"
head1: "Bugs"
head2: "Features"
head3: "Total"
# Incoming vs outcoming during the last 30 days
- name: Input vs Output ratios in 30 days Containers
if: always()
run: |
python backlog_checker.py comp tb_start
env:
header: "Incoming vs outcoming during the last 30 days"
header_description: |
This table shows the balance between ticket creation and ticket resolution.
If more tickets arrive than we are capable of solving,
it means that the length of the backlog will grow, and therefore we need more work force in that project.
And more tickets come out than come in, so we can divert workforce to other projects if necessary.
Two time ranges are contemplated, short-term (30 days) and medium-term (4 months)
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Containers"
query1: "Created In The Last 30 Days: Containers"
query2: "Finished In The Last 30 Days: Containers"
query3: "Backlog Length: Containers"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 30 days JeOS
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "JeOS"
query1: "Created In The Last 30 Days: JeOS"
query2: "Finished In The Last 30 Days: JeOS"
query3: "Backlog Length: JeOS"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 30 days WSL
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "WSL"
query1: "Created In The Last 30 Days: WSL"
query2: "Finished In The Last 30 Days: WSL"
query3: "Backlog Length: WSL"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 30 days Public Cloud
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Public Cloud"
query1: "Created In The Last 30 Days: Public Cloud"
query2: "Finished In The Last 30 Days: Public Cloud"
query3: "Backlog Length: Public Cloud"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 30 days SLE Micro
if: always()
run: |
python backlog_checker.py comp tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "SLE Micro"
query1: "Created In The Last 30 Days: SLE Micro"
query2: "Finished In The Last 30 Days: SLE Micro"
query3: "Backlog Length: SLE Micro"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
# Incoming vs outcoming during the last 4 months
- name: Input vs Output ratios in 4 months Containers
if: always()
run: |
python backlog_checker.py comp tb_start
env:
header: "Incoming vs outcoming during the last 4 months"
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Containers"
query1: "Created In The Last 120 Days: Containers"
query2: "Finished In The Last 120 Days: Containers"
query3: "Backlog Length: Containers"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 4 months JeOS
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "JeOS"
query1: "Created In The Last 120 Days: JeOS"
query2: "Finished In The Last 120 Days: JeOS"
query3: "Backlog Length: JeOS"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 4 months WSL
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "WSL"
query1: "Created In The Last 120 Days: WSL"
query2: "Finished In The Last 120 Days: WSL"
query3: "Backlog Length: WSL"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 4 months Public Cloud
if: always()
run: |
python backlog_checker.py comp
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "Public Cloud"
query1: "Created In The Last 120 Days: Public Cloud"
query2: "Finished In The Last 120 Days: Public Cloud"
query3: "Backlog Length: Public Cloud"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
- name: Input vs Output ratios in 4 months SLE Micro
if: always()
run: |
python backlog_checker.py comp tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
rowText: "SLE Micro"
query1: "Created In The Last 120 Days: SLE Micro"
query2: "Finished In The Last 120 Days: SLE Micro"
query3: "Backlog Length: SLE Micro"
head1: "New tickets"
head2: "Finished tickets"
head3: "Backlog length"
######################################################################
# Backlog lengths
######################################################################
# Backlog lengths : Containers
- name: check urgent priority containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority Length: Containers"
header: "Containers"
category: "Backlog Lengths by priority"
category_description: |
These tables show the backlog length per priority. The "Warning level" is a the max number of tickets that we consider safe. This level is established by consensus in the team.
max_level: 1
- name: check high priority containers backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority Length: Containers"
max_level: 3
- name: check normal priority containers backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority Length: Containers"
max_level: 20
# Backlog lengths : JeOS
- name: check urgent priority JeOS backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority Length: JeOS"
header: "JeOS"
max_level: 1
- name: check high priority JeOS backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority Length: JeOS"
max_level: 3
- name: check normal priority JeOS backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority Length: JeOS"
max_level: 20
# Backlog lengths : WSL
- name: check urgent priority WSL backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority Length: WSL"
header: "WSL"
max_level: 1
- name: check high priority WSL backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority Length: WSL"
max_level: 3
- name: check normal priority WSL backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority Length: WSL"
max_level: 20
# Backlog lengths : SLE Micro
- name: check urgent priority SLE Micro backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority Length: SLE Micro"
header: "SLE Micro"
max_level: 1
- name: check high priority SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority Length: SLE Micro"
max_level: 3
- name: check normal priority SLE Micro backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority Length: SLE Micro"
max_level: 20
# Backlog lengths : Public Cloud
- name: check urgent priority Public Cloud backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority Length: Public Cloud"
header: "Public Cloud"
max_level: 1
- name: check high priority Public Cloud backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority Length: Public Cloud"
max_level: 3
- name: check normal priority Public Cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority Length: Public Cloud"
max_level: 20
######################################################################
# Pickup timeouts
######################################################################
# Urgent prioities timeout
- name: check urgent priority containers backlog timeout
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority: Containers"
category: "Pickup time alerts"
category_description: |
These tables show the tickets that are in violation of the [SLO](https://progress.opensuse.org/projects/openqatests/wiki#SLOs-service-level-objectives)
header: "Urgent Priority"
hideMaxLevel: "1"
- name: check urgent priority jeos backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority: JeOS"
hideMaxLevel: "1"
- name: check urgent priority SLE Micro backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority: SLE Micro"
hideMaxLevel: "1"
- name: check urgent priority wsl backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority: WSL"
hideMaxLevel: "1"
- name: check urgent priority public cloud backlog timeout
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Urgent Priority: Public Cloud"
hideMaxLevel: "1"
# High prioities timeout
- name: check high priority containers backlog timeout
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority: Containers"
header: "High Priority"
hideMaxLevel: "1"
- name: check high priority jeos backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority: JeOS"
hideMaxLevel: "1"
- name: check high priority SLE Micro backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority: SLE Micro"
hideMaxLevel: "1"
- name: check high priority wsl backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority: WSL"
hideMaxLevel: "1"
- name: check high priority public cloud backlog timeout
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "High Priority: Public Cloud"
hideMaxLevel: "1"
# Normal prioities timeout
- name: check normal priority containers backlog timeout
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority: Containers"
header: "Normal Priority"
hideMaxLevel: "1"
- name: check normal priority jeos backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority: JeOS"
hideMaxLevel: "1"
- name: check normal priority SLE Micro backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority: SLE Micro"
hideMaxLevel: "1"
- name: check normal priority wsl backlog timeout
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority: WSL"
hideMaxLevel: "1"
- name: check normal priority public cloud backlog timeout
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Normal Priority: Public Cloud"
hideMaxLevel: "1"
######################################################################
# No changes in 15 days
######################################################################
# No Changes in 15 days
- name: check not changed in 15 days containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: Containers"
category: "Non updated tickets for 15 days"
category_description: |
These tables show the tickets that have more than 15 days without any update
header: "Tickets in progress with no changes in 15 days"
header_description: |
These tickets are in progress and we should review that because maybe have blockers or are under feedback and we forgot to update the status of the ticket.
hideMaxLevel: "1"
- name: check not changed in 15 days jeos backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: JeOS"
hideMaxLevel: "1"
- name: check not changed in 15 days SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: SLE Micro"
hideMaxLevel: "1"
- name: check not changed in 15 days wsl backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: WSL"
hideMaxLevel: "1"
- name: check not changed in 15 days public cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: Public Cloud"
hideMaxLevel: "1"
# No changes in 15 days (Blocked and Feedback)
- name: check not changed in 15 days containers backlog length (Blocked and Feedback)
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: Containers (Blocked and Feedback)"
header: "Tickets with the status Blocked and Feedback with no changes in 15 days"
header_description: |
These tickets are in progress and we should review that because maybe what is blocking is solved. Or we need to insist when we don't have feedback.
hideMaxLevel: "1"
- name: check not changed in 15 days jeos backlog length (Blocked and Feedback)
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: JeOS (Blocked and Feedback)"
hideMaxLevel: "1"
- name: check not changed in 15 days SLE Micro backlog length (Blocked and Feedback)
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: SLE Micro (Blocked and Feedback)"
hideMaxLevel: "1"
- name: check not changed in 15 days wsl backlog length (Blocked and Feedback)
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: WSL (Blocked and Feedback)"
hideMaxLevel: "1"
- name: check not changed in 15 days public cloud backlog length (Blocked and Feedback)
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Changed: Public Cloud (Blocked and Feedback)"
hideMaxLevel: "1"
######################################################################
# Abnormalities
######################################################################
# In progress but not Assigned
- name: check in progress not assigned containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Assigned: Containers"
category: "Abnormalities"
category_description: |
These tickets has some kind of abnormality, and should be alerted to the team and reviewed
header: "In Progress But Not Assigned"
header_description: |
These are the typical tickets that due to forgetfulness are in progress but there is no assigned person.
If there is any clarification to be made with the person who is working with it, we need to know his name
hideMaxLevel: "1"
- name: check in progress not assigned jeos backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Assigned: JeOS"
hideMaxLevel: "1"
- name: check in progress not assigned SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Assigned: SLE Micro"
hideMaxLevel: "1"
- name: check in progress not assigned wsl backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Assigned: WSL"
hideMaxLevel: "1"
- name: check in progress not assigned cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Not Assigned: Public Cloud"
hideMaxLevel: "1"
# Assigned but not started
- name: check in progress assigned but not started containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Assigned but not started: Containers"
header: "Assigned but not started"
header_description: |
Some tickets could be blocked by a teammate for a time assigned to him but not started. This option is considered,
but care must be taken if too much time has passed or if the person is on sick leave or on vacation.
This would mean that the task is effectively blocked
hideMaxLevel: "1"
- name: check in progress assigned but not started jeos backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Assigned but not started: JeOS"
hideMaxLevel: "1"
- name: check in progress assigned but not started SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Assigned but not started: SLE Micro"
hideMaxLevel: "1"
- name: check in progress assigned but not started wsl backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Assigned but not started: WSL"
hideMaxLevel: "1"
- name: check in progress assigned but not started public cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Assigned but not started: Public Cloud"
hideMaxLevel: "1"
# New tickets
- name: check new containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "New: Containers"
header: "New tickets"
header_description: |
New tickets that are not workable and need clarification should be reviewed during the refinement meeting.
hideMaxLevel: "1"
failIcon: "review"
passIcon: ""
- name: check new jeos backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "New: JeOS"
hideMaxLevel: "1"
failIcon: "review"
passIcon: ""
- name: check new SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "New: SLE Micro"
hideMaxLevel: "1"
failIcon: "review"
passIcon: ""
- name: check new wsl backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "New: WSL"
hideMaxLevel: "1"
failIcon: "review"
passIcon: ""
- name: check new public cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "New: Public Cloud"
hideMaxLevel: "1"
failIcon: "review"
passIcon: ""
# Coordination without subtasks
- name: check in progress coordination without subtasks containers backlog length
if: always()
run: |
python backlog_checker.py tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Coordination with no subtasks: Containers"
header: "Coordination without subtasks"
header_description: |
Epics can be defined to record a new line of work in a project.
Initially these epics may not have tasks assigned to them. This table is a reminder for the PO
hideMaxLevel: "1"
- name: check in progress coordination without subtasks jeos backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Coordination with no subtasks: JeOS"
hideMaxLevel: "1"
- name: check in progress coordination without subtasks SLE Micro backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Coordination with no subtasks: SLE Micro"
hideMaxLevel: "1"
- name: check in progress coordination without subtasks wsl backlog length
if: always()
run: |
python backlog_checker.py
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Coordination with no subtasks: WSL"
hideMaxLevel: "1"
- name: check in progress coordination without subtasks public cloud backlog length
if: always()
run: |
python backlog_checker.py tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Coordination with no subtasks: Public Cloud"
hideMaxLevel: "1"
# Epics
- name: check container epics
if: always()
run: |
python backlog_checker.py epic
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Epics Containers"
category: "Epics"
header: "Container Epics"
- name: check jeos epics
if: always()
run: |
python backlog_checker.py epic
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Epics JeOS"
header: "JeOS Epics"
- name: check SLE Micro epics
if: always()
run: |
python backlog_checker.py epic
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Epics SLE Micro"
header: "SLE Micro Epics"
- name: check wsl epics
if: always()
run: |
python backlog_checker.py epic
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Epics WSL"
header: "WSL Epics"
- name: check public cloud epics
if: always()
run: |
python backlog_checker.py epic
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Epics Public Cloud"
header: "Public Cloud Epics"
# Aging
- name: aging containers
if: always()
run: |
python backlog_checker.py aging tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: Containers"
header: "Aging tickets finished in the last 30 days"
category: "Aging of tickets"
category_description: |
Mesures the time since the ticket is created and the ticket is resolved
rowText: "Containers"
head: "Days to complete"
- name: aging JeOS
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: JeOS"
rowText: "JeOS"
head: "Days to complete"
- name: aging WSL
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: WSL"
rowText: "WSL"
head: "Days to complete"
- name: aging Public Cloud
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: Public Cloud"
rowText: "Public Cloud"
head: "Days to complete"
- name: aging SLE Micro
if: always()
run: |
python backlog_checker.py aging tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: SLE Micro"
rowText: "SLE Micro"
head: "Days to complete"
- name: Footer
if: always()
run: |
python backlog_checker.py description
env:
text: |
# Other links
**Finished tickets this week**
* [Containers](https://progress.opensuse.org/projects/containers/issues?utf8=%E2%9C%93&set_filter=1&sort=priority%3Adesc%2Cid%3Adesc&f%5B%5D=closed_on&op%5Bclosed_on%5D=w&f%5B%5D=&c%5B%5D=subject&c%5B%5D=project&c%5B%5D=status&c%5B%5D=priority&c%5B%5D=author&c%5B%5D=assigned_to&c%5B%5D=relations&c%5B%5D=parent&c%5B%5D=tags_relations&c%5B%5D=updated_on&group_by=status&t%5B%5D=)
* [JeOS](https://progress.opensuse.org/projects/jeos/issues?utf8=%E2%9C%93&set_filter=1&sort=priority%3Adesc%2Cid%3Adesc&f%5B%5D=closed_on&op%5Bclosed_on%5D=w&f%5B%5D=&c%5B%5D=subject&c%5B%5D=project&c%5B%5D=status&c%5B%5D=priority&c%5B%5D=author&c%5B%5D=assigned_to&c%5B%5D=relations&c%5B%5D=parent&c%5B%5D=tags_relations&c%5B%5D=updated_on&group_by=status&t%5B%5D=)
* [WSL](https://progress.opensuse.org/projects/wsl/issues?utf8=%E2%9C%93&set_filter=1&sort=priority%3Adesc%2Cid%3Adesc&f%5B%5D=closed_on&op%5Bclosed_on%5D=w&f%5B%5D=&c%5B%5D=subject&c%5B%5D=project&c%5B%5D=status&c%5B%5D=priority&c%5B%5D=author&c%5B%5D=assigned_to&c%5B%5D=relations&c%5B%5D=parent&c%5B%5D=tags_relations&c%5B%5D=updated_on&group_by=status&t%5B%5D=)
* [Public Cloud](https://progress.opensuse.org/projects/public_cloud/issues?utf8=%E2%9C%93&set_filter=1&sort=priority%3Adesc%2Cid%3Adesc&f%5B%5D=closed_on&op%5Bclosed_on%5D=w&f%5B%5D=&c%5B%5D=subject&c%5B%5D=project&c%5B%5D=status&c%5B%5D=priority&c%5B%5D=author&c%5B%5D=assigned_to&c%5B%5D=relations&c%5B%5D=parent&c%5B%5D=tags_relations&c%5B%5D=updated_on&group_by=status&t%5B%5D=)
* [SLE Micro](https://progress.opensuse.org/projects/microos_slemicro/issues?utf8=%E2%9C%93&set_filter=1&sort=priority%3Adesc%2Cid%3Adesc&f%5B%5D=closed_on&op%5Bclosed_on%5D=w&f%5B%5D=&c%5B%5D=subject&c%5B%5D=project&c%5B%5D=status&c%5B%5D=priority&c%5B%5D=author&c%5B%5D=assigned_to&c%5B%5D=relations&c%5B%5D=parent&c%5B%5D=tags_relations&c%5B%5D=updated_on&group_by=status&t%5B%5D=)
# Commit
- name: Commit files
if: always()
run: |
rm -f README.md
mv index.md README.md
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add README.md
git commit --amend --no-edit
- name: Push changes
if: always()
uses: ad-m/github-push-action@master
with:
force: true
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}