-
Notifications
You must be signed in to change notification settings - Fork 8
/
repoconfig.yaml
1350 lines (1290 loc) · 51.2 KB
/
repoconfig.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
---
'@meta':
backport: php /srv/mediawiki/targets/production/extensions/Translate/scripts/backport.php
export: php /srv/mediawiki/targets/production/extensions/Translate/scripts/export.php
expand: php /srv/mediawiki/targets/production/extensions/Translate/scripts/expand-groupspec.php --exportable
state-directory|export: /resources/projects
ajapaik:
group: ajapaik-*
repos:
ajapaik-web:
type: github
url: https://github.com/Ajapaik/ajapaik-web.git
url|export: [email protected]:Ajapaik/ajapaik-web.git
ajapaik-flutter-app:
type: github
branch: imageview
url: https://github.com/Ajapaik/ajapaik_flutter_app.git
url|export: [email protected]:Ajapaik/ajapaik_flutter_app.git
blockly:
group: out-blockly*
repos:
blockly:
type: github
branch: develop
branch|export: translatewiki
url: https://github.com/google/blockly.git
url|export: [email protected]:google/blockly.git
blockly-games:
type: github
branch: main
url: https://github.com/NeilFraser/blockly-games.git
url|export: [email protected]:NeilFraser/blockly-games.git
codev:
group: codev
repos:
codev:
type: github
url: https://github.com/mantisbt-plugins/codev.git
url|export: [email protected]:mantisbt-plugins/codev.git
commons-android:
group: commons-android-*
no-export-languages: ksh,zh,en
repos:
commons-android:
type: github
branch: main
url: https://github.com/commons-app/apps-android-commons.git
url|export: [email protected]:commons-app/apps-android-commons.git
convenient-discussions:
group: convenient-discussions
repos:
jwbth/convenient-discussions:
type: github
branch: main
url: https://github.com/jwbth/convenient-discussions.git
url|export: [email protected]:jwbth/convenient-discussions.git
discordwikibot:
group: discordwikibot
repos:
stjohann/DiscordWikiBot:
type: github
url: https://github.com/stjohann/DiscordWikiBot.git
url|export: [email protected]:stjohann/DiscordWikiBot.git
eol:
group: eol-*
repos:
eol-website:
type: github
branch: main
url: https://github.com/EOL/publishing.git
url|export: [email protected]:EOL/publishing.git
etherpad-lite:
group: etherpad-lite-*
repos:
etherpad-lite:
type: github
branch: develop
url: https://github.com/ether/etherpad-lite.git
url|export: [email protected]:ether/etherpad-lite.git
ether/ep_adminpads2:
type: github
branch: main
url: https://github.com/ether/ep_adminpads2.git
url|export: [email protected]:ether/ep_adminpads2.git
ether/ep_align:
type: github
branch: main
url: https://github.com/ether/ep_align.git
url|export: [email protected]:ether/ep_align.git
ether/ep_author_follow:
type: github
branch: main
url: https://github.com/ether/ep_author_follow.git
url|export: [email protected]:ether/ep_author_follow.git
ether/ep_author_hover:
type: github
branch: main
url: https://github.com/ether/ep_author_hover.git
url|export: [email protected]:ether/ep_author_hover.git
ether/ep_comments_page:
type: github
branch: main
url: https://github.com/ether/ep_comments_page.git
url|export: [email protected]:ether/ep_comments_page.git
ether/ep_desktop_notifications:
type: github
branch: main
url: https://github.com/ether/ep_desktop_notifications.git
url|export: [email protected]:ether/ep_desktop_notifications.git
ether/ep_embedmedia:
type: github
branch: master
url: https://github.com/ether/ep_embedmedia.git
url|export: [email protected]:ether/ep_embedmedia.git
ether/ep_font_color:
type: github
branch: main
url: https://github.com/ether/ep_font_color.git
url|export: [email protected]:ether/ep_font_color.git
ether/ep_font_size:
type: github
branch: main
url: https://github.com/ether/ep_font_size.git
url|export: [email protected]:ether/ep_font_size.git
ether/ep_guest:
type: github
branch: main
url: https://github.com/ether/ep_guest.git
url|export: [email protected]:ether/ep_guest.git
ether/ep_headings2:
type: github
url: https://github.com/ether/ep_headings2.git
url|export: [email protected]:ether/ep_headings2.git
ether/ep_image_upload:
type: github
url: https://github.com/citizenos/ep_image_upload.git
url|export: [email protected]:citizenos/ep_image_upload.git
ether/ep_markdown:
type: github
url: https://github.com/ether/ep_markdown.git
url|export: [email protected]:ether/ep_markdown.git
ether/ep_padlist2:
type: github
branch: main
url: https://github.com/ether/ep_padlist2.git
url|export: [email protected]:ether/ep_padlist2.git
ether/ep_set_title_on_pad:
type: github
branch: main
url: https://github.com/ether/ep_set_title_on_pad.git
url|export: [email protected]:ether/ep_set_title_on_pad.git
ether/ep_spellcheck:
type: github
url: https://github.com/ether/ep_spellcheck.git
url|export: [email protected]:ether/ep_spellcheck.git
ether/ep_subscript_and_superscript:
type: github
url: https://github.com/ether/ep_subscript_and_superscript.git
url|export: [email protected]:ether/ep_subscript_and_superscript.git
ether/ep_table_of_contents:
type: github
url: https://github.com/ether/ep_table_of_contents.git
url|export: [email protected]:ether/ep_table_of_contents.git
ether/ep_webrtc:
type: github
branch: main
url: https://github.com/ether/ep_webrtc.git
url|export: [email protected]:ether/ep_webrtc.git
ether/ep_what_have_i_missed:
type: github
branch: main
url: https://github.com/ether/ep_what_have_i_missed.git
url|export: [email protected]:ether/ep_what_have_i_missed.git
ether/ep_who_did_what:
type: github
branch: main
url: https://github.com/ether/ep_who_did_what.git
url|export: [email protected]:ether/ep_who_did_what.git
freecol:
group: out-freecol
repos:
freecol:
type: git
url: git://git.code.sf.net/p/freecol/git
url|export: ssh://[email protected]/p/freecol/git
fudforum:
group: out-fudforum
repos:
fudforum:
type: github
url: https://github.com/fudforum/FUDforum.git
url|export: [email protected]:fudforum/FUDforum.git
huggle:
group: huggle
repos:
huggle:
type: github
url: https://github.com/huggle/huggle3-qt-lx.git
url|export: [email protected]:huggle/huggle3-qt-lx.git
intuition:
group: tsint-*
# Note that wikimedia-tools has auto-merge for labs/tools/.*
auto-merge: labs/tools/intuition
export-threshold: 1
repos:
intuition:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/labs/tools/intuition
url|export: ssh://[email protected]:29418/labs/tools/intuition
kiwix:
group: kiwix-*
repos:
kiwix-android:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/kiwix/kiwix-android.git
url|export: [email protected]:kiwix/kiwix-android.git
kiwix-desktop:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/kiwix/kiwix-desktop.git
url|export: [email protected]:kiwix/kiwix-desktop.git
kiwix-apple:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/kiwix/apple.git
url|export: [email protected]:kiwix/apple.git
kiwix-mwoffliner:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/openzim/mwoffliner.git
url|export: [email protected]:openzim/mwoffliner.git
kiwix-serve:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/kiwix/libkiwix.git
url|export: [email protected]:kiwix/libkiwix.git
kiwix-phet:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/openzim/phet.git
url|export: [email protected]:openzim/phet.git
kiwix-zimit-frontend:
type: github
branch: main
pull-branch: translatewiki
url: https://github.com/openzim/zimit-frontend.git
url|export: [email protected]:openzim/zimit-frontend.git
lib.reviews:
group: lib.reviews
repos:
lib.reviews:
type: github
branch: main
url: https://github.com/eloquence/lib.reviews.git
url|export: [email protected]:eloquence/lib.reviews.git
libremesh:
group: libremesh-*
repos:
libremesh/lime-packages:
type: github
branch: feature/tw-translations
url: https://github.com/translation-bridge/lime-packages.git
url|export: [email protected]:translation-bridge/lime-packages.git
libremesh/lime-app:
type: github
branch: issue-119
url: https://github.com/translation-bridge/lime-app.git
url|export: [email protected]:translation-bridge/lime-app.git
libremesh/lime-docs:
type: github
url: https://github.com/translation-bridge/lime-docs.git
url|export: [email protected]:translation-bridge/lime-docs.git
mantis:
group: out-mantis*
repos:
mantis:
type: github
url: https://github.com/mantisbt/mantisbt.git
url|export: [email protected]:mantisbt/mantisbt.git
commit-message-suffix: "[skip ci]"
mathjax:
group: out-mathjax-*
repos:
mathjax:
type: github
url: https://github.com/mathjax/MathJax-i18n.git
url|export: [email protected]:mathjax/MathJax-i18n.git
mediawiki:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
export-threshold: 13
group: core,mediawiki-codex,mediawiki-installer,mediawiki-preferences,mediawiki-api,mediawiki-rest-api,mediawiki-exif,wikimedia-paramvalidator
auto-merge: mediawiki/core
repos:
mediawiki/master:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/mediawiki/core
url|export: ssh://[email protected]:29418/mediawiki/core
mediawiki-extensions:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
export-threshold: 0
group: ext-*
auto-merge: ^mediawiki/extensions/.*
repos:
'@generator': php ../groups/MediaWiki/repong-generator.php extensions
mediawiki-skins:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
export-threshold: 0
group: mediawiki-skin-*
auto-merge: ^mediawiki/skins/.*
repos:
'@generator': php ../groups/MediaWiki/repong-generator.php skins
miniedit:
group: miniedit
auto-merge: mediawiki/gadgets/MiniEdit
repos:
miniedit:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/mediawiki/gadgets/MiniEdit
url|export: ssh://[email protected]:29418/mediawiki/gadgets/MiniEdit
mwbitbucket:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
group: mwbitbucket-*,mwbitbucketskin-*
repos:
mwbitbucket/wikiskripta/medik:
type: git
url: https://bitbucket.org/wikiskripta/medik.git
url|export: [email protected]:wikiskripta/medik.git
mwgerrit:
group: mwgerrit-*
auto-merge: ^data-values/value-view|oojs/ui|VisualEditor/VisualEditor
repos:
mwgerrit/data-values/value-view:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/data-values/value-view
url|export: ssh://[email protected]:29418/data-values/value-view
mwgerrit/oojs/ui:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/oojs/ui
url|export: ssh://[email protected]:29418/oojs/ui
mwgerrit/VisualEditor/VisualEditor:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/VisualEditor/VisualEditor
url|export: ssh://[email protected]:29418/VisualEditor/VisualEditor
mwgithub:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
group: mwgithub-*,mwgithubskin-*
repos:
mwgithub/AgentIsai/Share:
type: github
url: https://github.com/AgentIsai/Share.git
url|export: [email protected]:AgentIsai/Share.git
mwgithub/alex4401/mediawiki-extensions-DataMaps:
type: github
branch: main
url: https://github.com/alex4401/mediawiki-extensions-DataMaps
url|export: [email protected]:alex4401/mediawiki-extensions-DataMaps.git
mwgithub/alex4401/mediawiki-extensions-ThemeToggle:
type: github
branch: main
url: https://github.com/alex4401/mediawiki-extensions-ThemeToggle.git
url|export: [email protected]:alex4401/mediawiki-extensions-ThemeToggle.git
mwgithub/AlPha5130/mediawiki-extensions-EditCountNeue:
type: github
url: https://github.com/AlPha5130/mediawiki-extensions-EditCountNeue.git
url|export: [email protected]:AlPha5130/mediawiki-extensions-EditCountNeue.git
mwgithub/Appropedia/extension:
type: github
branch: main
url: https://github.com/Appropedia/extension.git
url|export: [email protected]:Appropedia/extension.git
mwgithub/edwardspec/mediawiki-moderation:
type: github
branch: translatewiki
url: https://github.com/edwardspec/mediawiki-moderation.git
url|export: [email protected]:edwardspec/mediawiki-moderation.git
mwgithub/femiwiki/FemiwikiSkin:
type: github
branch: main
url: https://github.com/femiwiki/FemiwikiSkin.git
url|export: [email protected]:femiwiki/FemiwikiSkin.git
mwgithub/femiwiki/UnifiedExtensionForFemiwiki:
type: github
branch: main
url: https://github.com/femiwiki/UnifiedExtensionForFemiwiki.git
url|export: [email protected]:femiwiki/UnifiedExtensionForFemiwiki.git
mwgithub/Halopedia/Onyx:
type: github
url: https://github.com/Halopedia/Onyx.git
url|export: [email protected]:Halopedia/Onyx.git
mwgithub/AlPha5130/Purge:
type: github
url: https://github.com/AlPha5130/mediawiki-extensions-Purge.git
url|export: [email protected]:AlPha5130/mediawiki-extensions-Purge.git
mwgithub/jayktaylor/mw-discord:
type: github
url: https://github.com/jayktaylor/mw-discord.git
url|export: [email protected]:jayktaylor/mw-discord.git
mwgithub/jeblad/BCmath:
type: github
url: https://github.com/jeblad/BCmath.git
url|export: [email protected]:jeblad/BCmath.git
mwgithub/jeblad/Expect:
type: github
url: https://github.com/jeblad/Expect.git
url|export: [email protected]:jeblad/Expect.git
mwgithub/jeblad/Katsa:
type: github
url: https://github.com/jeblad/Katsa.git
url|export: [email protected]:jeblad/Katsa.git
mwgithub/jeblad/ModDoc:
type: github
url: https://github.com/jeblad/ModDoc.git
url|export: [email protected]:jeblad/ModDoc.git
mwgithub/jeblad/Pickle:
type: github
url: https://github.com/jeblad/Pickle.git
url|export: [email protected]:jeblad/Pickle.git
mwgithub/JeroenDeDauw/ParserHooks:
type: github
url: https://github.com/JeroenDeDauw/ParserHooks.git
url|export: [email protected]:JeroenDeDauw/ParserHooks.git
mwgithub/JeroenDeDauw/SubPageList:
type: github
url: https://github.com/JeroenDeDauw/SubPageList.git
url|export: [email protected]:JeroenDeDauw/SubPageList.git
mwgithub/JeroenDeDauw/Validator:
type: github
url: https://github.com/JeroenDeDauw/Validator.git
url|export: [email protected]:JeroenDeDauw/Validator.git
mwgithub/kulttuuri/DiscordNotifications:
type: github
url: https://github.com/kulttuuri/DiscordNotifications.git
url|export: [email protected]:kulttuuri/DiscordNotifications.git
mwgithub/lakejason0/mediawiki-skins-Lakeus:
type: github
url: https://github.com/lakejason0/mediawiki-skins-Lakeus.git
url|export: [email protected]:lakejason0/mediawiki-skins-Lakeus.git
mwgithub/librewiki/liberty-skin:
type: github
url: https://github.com/librewiki/liberty-skin.git
url|export: [email protected]:librewiki/liberty-skin.git
mwgithub/lingua-libre/BlueLL:
type: github
branch: master
url: https://github.com/lingua-libre/BlueLL.git
url|export: [email protected]:lingua-libre/BlueLL.git
mwgithub/lingua-libre/RecordWizard:
type: github
url: https://github.com/lingua-libre/RecordWizard
url|export: [email protected]:lingua-libre/RecordWizard.git
mwgithub/miraheze/CreateWiki:
type: github
url: https://github.com/miraheze/CreateWiki.git
url|export: [email protected]:miraheze/CreateWiki.git
mwgithub/miraheze/DataDump:
type: github
url: https://github.com/miraheze/DataDump.git
url|export: [email protected]:miraheze/DataDump.git
mwgithub/miraheze/ErrorPages:
type: github
url: https://github.com/miraheze/ErrorPages.git
url|export: [email protected]:miraheze/ErrorPages.git
mwgithub/miraheze/GlobalNewFiles:
type: github
url: https://github.com/miraheze/GlobalNewFiles.git
url|export: [email protected]:miraheze/GlobalNewFiles.git
mwgithub/miraheze/ImportDump:
type: github
url: https://github.com/miraheze/ImportDump.git
url|export: [email protected]:miraheze/ImportDump.git
mwgithub/miraheze/IncidentReporting:
type: github
url: https://github.com/miraheze/IncidentReporting.git
url|export: [email protected]:miraheze/IncidentReporting.git
mwgithub/miraheze/landing:
type: github
url: https://github.com/miraheze/landing.git
url|export: [email protected]:miraheze/landing.git
mwgithub/miraheze/ManageWiki:
type: github
url: https://github.com/miraheze/ManageWiki.git
url|export: [email protected]:miraheze/ManageWiki.git
mwgithub/miraheze/MatomoAnalytics:
type: github
url: https://github.com/miraheze/MatomoAnalytics.git
url|export: [email protected]:miraheze/MatomoAnalytics.git
mwgithub/miraheze/MirahezeMagic:
type: github
url: https://github.com/miraheze/MirahezeMagic.git
url|export: [email protected]:miraheze/MirahezeMagic.git
mwgithub/miraheze/PDFEmbed:
type: github
url: https://github.com/miraheze/PDFEmbed.git
url|export: [email protected]:miraheze/PDFEmbed.git
mwgithub/miraheze/RemovePII:
type: github
url: https://github.com/miraheze/RemovePII.git
url|export: [email protected]:miraheze/RemovePII.git
mwgithub/miraheze/RequestSSL:
type: github
url: https://github.com/miraheze/RequestSSL.git
url|export: [email protected]:miraheze/RequestSSL.git
mwgithub/miraheze/RottenLinks:
type: github
url: https://github.com/miraheze/RottenLinks.git
url|export: [email protected]:miraheze/RottenLinks.git
mwgithub/miraheze/WikiDiscover:
type: github
url: https://github.com/miraheze/WikiDiscover.git
url|export: [email protected]:miraheze/WikiDiscover.git
mwgithub/miraheze/YouTube:
type: github
url: https://github.com/miraheze/YouTube.git
url|export: [email protected]:miraheze/YouTube.git
mwgithub/Nikerabbit/mediawiki-extensions-FinnFrameNet:
type: github
url: https://github.com/Nikerabbit/mediawiki-extensions-FinnFrameNet.git
url|export: [email protected]:Nikerabbit/mediawiki-extensions-FinnFrameNet.git
mwgithub/Nikerabbit/mediawiki-extensions-Lud:
type: github
url: https://github.com/Nikerabbit/mediawiki-extensions-Lud.git
url|export: [email protected]:Nikerabbit/mediawiki-extensions-Lud.git
mwgithub/octfx/mediawiki-extension-Plausible:
type: github
url: https://github.com/octfx/mediawiki-extension-Plausible.git
url|export: [email protected]:octfx/mediawiki-extension-Plausible.git
mwgithub/oetterer/BootstrapComponents:
type: github
url: https://github.com/oetterer/BootstrapComponents.git
url|export: [email protected]:oetterer/BootstrapComponents.git
mwgithub/ProfessionalWiki/AutomatedValues:
type: github
url: https://github.com/ProfessionalWiki/AutomatedValues.git
url|export: [email protected]:ProfessionalWiki/AutomatedValues.git
mwgithub/ProfessionalWiki/chameleon:
type: github
url: https://github.com/ProfessionalWiki/chameleon.git
url|export: [email protected]:ProfessionalWiki/chameleon.git
mwgithub/ProfessionalWiki/EDTF:
type: github
url: https://github.com/ProfessionalWiki/EDTF.git
url|export: [email protected]:ProfessionalWiki/EDTF.git
mwgithub/ProfessionalWiki/ExternalContent:
type: github
url: https://github.com/ProfessionalWiki/ExternalContent.git
url|export: [email protected]:ProfessionalWiki/ExternalContent.git
mwgithub/ProfessionalWiki/IdGenerator:
type: github
url: https://github.com/ProfessionalWiki/IdGenerator.git
url|export: [email protected]:ProfessionalWiki/IdGenerator.git
mwgithub/ProfessionalWiki/Maps:
type: github
url: https://github.com/ProfessionalWiki/Maps.git
url|export: [email protected]:ProfessionalWiki/Maps.git
mwgithub/ProfessionalWiki/ModernTimeline:
type: github
url: https://github.com/ProfessionalWiki/ModernTimeline.git
url|export: [email protected]:ProfessionalWiki/ModernTimeline.git
mwgithub/ProfessionalWiki/Network:
type: github
url: https://github.com/ProfessionalWiki/Network.git
url|export: [email protected]:ProfessionalWiki/Network.git
mwgithub/ProfessionalWiki/PageApprovals:
type: github
url: https://github.com/ProfessionalWiki/PageApprovals.git
url|export: [email protected]:ProfessionalWiki/PageApprovals.git
mwgithub/ProfessionalWiki/SimpleBatchUpload:
type: github
url: https://github.com/ProfessionalWiki/SimpleBatchUpload.git
url|export: [email protected]:ProfessionalWiki/SimpleBatchUpload.git
mwgithub/ProfessionalWiki/WikibaseEdtf:
type: github
url: https://github.com/ProfessionalWiki/WikibaseEdtf.git
url|export: [email protected]:ProfessionalWiki/WikibaseEdtf.git
mwgithub/ProfessionalWiki/WikibaseExport:
type: github
url: https://github.com/ProfessionalWiki/WikibaseExport.git
url|export: [email protected]:ProfessionalWiki/WikibaseExport.git
mwgithub/ProfessionalWiki/WikibaseLocalMedia:
type: github
url: https://github.com/ProfessionalWiki/WikibaseLocalMedia.git
url|export: [email protected]:ProfessionalWiki/WikibaseLocalMedia.git
mwgithub/ProfessionalWiki/WikibaseRDF:
type: github
url: https://github.com/ProfessionalWiki/WikibaseRDF.git
url|export: [email protected]:ProfessionalWiki/WikibaseRDF.git
mwgithub/SemanticMediaWiki/Mermaid:
type: github
url: https://github.com/SemanticMediaWiki/Mermaid.git
url|export: [email protected]:SemanticMediaWiki/Mermaid.git
mwgithub/SemanticMediaWiki/SemanticApprovedRevs:
type: github
url: https://github.com/SemanticMediaWiki/SemanticApprovedRevs.git
url|export: [email protected]:SemanticMediaWiki/SemanticApprovedRevs.git
mwgithub/SemanticMediaWiki/SemanticBreadcrumbLinks:
type: github
url: https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks.git
url|export: [email protected]:SemanticMediaWiki/SemanticBreadcrumbLinks.git
mwgithub/SemanticMediaWiki/SemanticCite:
type: github
url: https://github.com/SemanticMediaWiki/SemanticCite.git
url|export: [email protected]:SemanticMediaWiki/SemanticCite.git
mwgithub/SemanticMediaWiki/SemanticCompoundQueries:
type: github
url: https://github.com/SemanticMediaWiki/SemanticCompoundQueries.git
url|export: [email protected]:SemanticMediaWiki/SemanticCompoundQueries.git
mwgithub/SemanticMediaWiki/SemanticDrilldown:
type: github
url: https://github.com/SemanticMediaWiki/SemanticDrilldown.git
url|export: [email protected]:SemanticMediaWiki/SemanticDrilldown.git
mwgithub/SemanticMediaWiki/SemanticExternalQueryLookup:
type: github
url: https://github.com/SemanticMediaWiki/SemanticExternalQueryLookup.git
url|export: [email protected]:SemanticMediaWiki/SemanticExternalQueryLookup.git
mwgithub/SemanticMediaWiki/SemanticExtraSpecialProperties:
type: github
url: https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties.git
url|export: [email protected]:SemanticMediaWiki/SemanticExtraSpecialProperties.git
mwgithub/SemanticMediaWiki/SemanticFormsSelect:
type: github
url: https://github.com/SemanticMediaWiki/SemanticFormsSelect.git
url|export: [email protected]:SemanticMediaWiki/SemanticFormsSelect.git
mwgithub/SemanticMediaWiki/SemanticGlossary:
type: github
url: https://github.com/SemanticMediaWiki/SemanticGlossary.git
url|export: [email protected]:SemanticMediaWiki/SemanticGlossary.git
mwgithub/SemanticMediaWiki/SemanticImageCaption:
type: github
url: https://github.com/SemanticMediaWiki/SemanticImageCaption.git
url|export: [email protected]:SemanticMediaWiki/SemanticImageCaption.git
mwgithub/SemanticMediaWiki/SemanticInterlanguageLinks:
type: github
url: https://github.com/SemanticMediaWiki/SemanticInterlanguageLinks.git
url|export: [email protected]:SemanticMediaWiki/SemanticInterlanguageLinks.git
mwgithub/SemanticMediaWiki/SemanticMediaWiki:
type: github
url: https://github.com/SemanticMediaWiki/SemanticMediaWiki.git
url|export: [email protected]:SemanticMediaWiki/SemanticMediaWiki.git
mwgithub/SemanticMediaWiki/SemanticResultFormats:
type: github
url: https://github.com/SemanticMediaWiki/SemanticResultFormats.git
url|export: [email protected]:SemanticMediaWiki/SemanticResultFormats.git
mwgithub/SemanticMediaWiki/SemanticMetaTags:
type: github
url: https://github.com/SemanticMediaWiki/SemanticMetaTags.git
url|export: [email protected]:SemanticMediaWiki/SemanticMetaTags.git
mwgithub/SemanticMediaWiki/SemanticScribunto:
type: github
url: https://github.com/SemanticMediaWiki/SemanticScribunto.git
url|export: [email protected]:SemanticMediaWiki/SemanticScribunto.git
mwgithub/SemanticMediaWiki/SemanticSignup:
type: github
url: https://github.com/SemanticMediaWiki/SemanticSignup.git
url|export: [email protected]:SemanticMediaWiki/SemanticSignup.git
mwgithub/SemanticMediaWiki/SemanticTasks:
type: github
url: https://github.com/SemanticMediaWiki/SemanticTasks.git
url|export: [email protected]:SemanticMediaWiki/SemanticTasks.git
mwgithub/SemanticMediaWiki/SemanticWatchlist:
type: github
url: https://github.com/SemanticMediaWiki/SemanticWatchlist.git
url|export: [email protected]:SemanticMediaWiki/SemanticWatchlist.git
mwgithub/SemanticMediaWiki/WhatsNearby:
type: github
url: https://github.com/SemanticMediaWiki/WhatsNearby.git
url|export: [email protected]:SemanticMediaWiki/WhatsNearby.git
mwgithub/SkizNet/mediawiki-BlockASN:
type: github
url: https://github.com/SkizNet/mediawiki-BlockASN.git
url|export: [email protected]:SkizNet/mediawiki-BlockASN.git
mwgithub/SkizNet/mediawiki-Debounce:
type: github
url: https://github.com/SkizNet/mediawiki-Debounce.git
url|export: [email protected]:SkizNet/mediawiki-Debounce.git
mwgithub/SkizNet/mediawiki-GTag:
type: github
url: https://github.com/SkizNet/mediawiki-GTag.git
url|export: [email protected]:SkizNet/mediawiki-GTag.git
mwgithub/SkizNet/mediawiki-MediaWikiAuth:
type: github
url: https://github.com/SkizNet/mediawiki-MediaWikiAuth.git
url|export: [email protected]:SkizNet/mediawiki-MediaWikiAuth.git
mwgithub/StarCitizenTools/mediawiki-skins-Citizen:
type: github
branch: main
url: https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
url|export: [email protected]:StarCitizenTools/mediawiki-skins-Citizen.git
mwgithub/StarCitizenWiki/mediawiki-extensions-EmbedVideo:
type: github
branch: develop
url: https://github.com/StarCitizenWiki/mediawiki-extensions-EmbedVideo.git
url|export: [email protected]:StarCitizenWiki/mediawiki-extensions-EmbedVideo.git
mwgithub/StarCitizenTools/mediawiki-extensions-ShortDescription:
type: github
url: https://github.com/StarCitizenTools/mediawiki-extensions-ShortDescription.git
url|export: [email protected]:StarCitizenTools/mediawiki-extensions-ShortDescription.git
mwgithub/StarCitizenTools/mediawiki-extensions-TabberNeue:
type: github
branch: main
url: https://github.com/StarCitizenTools/mediawiki-extensions-TabberNeue.git
url|export: [email protected]:StarCitizenTools/mediawiki-extensions-TabberNeue.git
mwgithub/Universal-Omega/AutoCreatePage:
type: github
url: https://github.com/Universal-Omega/AutoCreatePage.git
url|export: [email protected]:Universal-Omega/AutoCreatePage.git
mwgithub/Universal-Omega/DiscordNotifications:
type: github
url: https://github.com/Universal-Omega/DiscordNotifications.git
url|export: [email protected]:Universal-Omega/DiscordNotifications.git
mwgithub/Universal-Omega/DynamicPageList3:
type: github
url: https://github.com/Universal-Omega/DynamicPageList3.git
url|export: [email protected]:Universal-Omega/DynamicPageList3.git
mwgithub/Universal-Omega/Monaco:
type: github
url: https://github.com/Universal-Omega/Monaco.git
url|export: [email protected]:Universal-Omega/Monaco.git
mwgithub/Universal-Omega/PortableInfobox:
type: github
url: https://github.com/Universal-Omega/PortableInfobox.git
url|export: [email protected]:Universal-Omega/PortableInfobox.git
mwgithub/Universal-Omega/Preloader:
type: github
url: https://github.com/Universal-Omega/Preloader.git
url|export: [email protected]:Universal-Omega/Preloader.git
mwgithub/Universal-Omega/SimpleBlogPage:
type: github
url: https://github.com/Universal-Omega/SimpleBlogPage.git
url|export: [email protected]:Universal-Omega/SimpleBlogPage.git
mwgithub/Universal-Omega/SimpleTooltip:
type: github
url: https://github.com/Universal-Omega/SimpleTooltip.git
url|export: [email protected]:Universal-Omega/SimpleTooltip.git
mwgitlab:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady
group: mwgitlab-*,mwgitlabskin-*
repos:
mwgitlab/nonsensopedia/ratepage:
type: github # same committer name and email as in github
url: https://gitlab.com/nonsensopedia/extensions/ratepage.git
url|export: [email protected]:nonsensopedia/extensions/ratepage.git
mwgitlab/telepedia/userprofilev2:
type: github
branch: main
url: https://gitlab.com/telepedia/extensions/userprofilev2.git
url|export: [email protected]:telepedia/extensions/userprofilev2.git
nfcring-control:
group: nfcring-control
repos:
nfcring-control:
type: github
url: https://github.com/mclear/NFC_Ring_Control.git
url|export: [email protected]:mclear/NFC_Ring_Control.git
nocc:
group: out-nocc-*
repos:
nocc:
type: svn
url: https://svn.code.sf.net/p/nocc/code/trunk
url|export: svn+ssh://[email protected]/p/nocc/code/trunk
ohm:
group: ohm-*
repos:
ohm-website:
type: github
branch: staging
pull-branch: translatewiki
url: https://github.com/OpenHistoricalMap/ohm-website.git
url|export: [email protected]:OpenHistoricalMap/ohm-website.git
ohm-overpass-turbo:
type: github
branch: main
pull-branch: twn
url: https://github.com/OpenHistoricalMap/overpass-turbo.git
url|export: [email protected]:OpenHistoricalMap/overpass-turbo.git
oppia:
group: oppia,oppia-android-app
export-threshold: 90
repos:
oppia:
type: github
branch: develop
branch|export: translatewiki-prs
url: https://github.com/oppia/oppia.git
url|export: [email protected]:oppia/oppia.git
oppia-android:
type: github
branch: develop
pull-branch: translatewiki-prs
url: https://github.com/oppia/oppia-android.git
url|export: [email protected]:oppia/oppia-android.git
osm:
no-export-languages: en,qqq
group: out-osm-*,osm-*
repos:
osm:
type: github
url: https://github.com/openstreetmap/openstreetmap-website.git
url|export: [email protected]:openstreetmap/openstreetmap-website.git
pagecontentservice:
group: pagecontentservice
auto-merge: mediawiki/services/mobileapps
repos:
pagecontentservice:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/mediawiki/services/mobileapps
url|export: ssh://[email protected]:29418/mediawiki/services/mobileapps
phabricator:
group: phabricator-*
export-threshold: 1
auto-merge: phabricator/translations
repos:
phabricator:
type: wmgerrit
branch: wmf/stable
url: https://gerrit.wikimedia.org/r/phabricator/translations
url|export: ssh://[email protected]:29418/phabricator/translations
proveit:
group: proveit
auto-merge: mediawiki/gadgets/ProveIt
repos:
proveit:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/mediawiki/gadgets/ProveIt
url|export: ssh://[email protected]:29418/mediawiki/gadgets/ProveIt
pywikibot:
group: out-pywikipedia-*
export-threshold: 1
auto-merge: pywikibot/i18n
repos:
pywikibot:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/pywikibot/i18n
url|export: ssh://[email protected]:29418/pywikibot/i18n
qrmedia:
group: qrmedia
repos:
qrmedia:
type: gitlab
url: https://gitlab.wikimedia.org/repos/wikimedia-france/qrmedia.git
url|export: [email protected]:repos/wikimedia-france/qrmedia.git
swviewer:
group: swviewer
repos:
SWViewer/tool-swviewer:
type: github
url: https://github.com/SWViewer/tool-swviewer.git
url|export: [email protected]:SWViewer/tool-swviewer.git
toolhub:
always-export-languages: en-ca,en-gb,es-formal,de-formal,de-at,de-ch,hu-formal,nl-informal,pap-aw,zh-hk
no-export-languages: test,aeb,ais,be-x-old,crh,dk,en,fiu-vro,gan,gom,hif,kbd,kk,kk-cn,iu,kk-kz,kk-tr,ku,ku-arab,no,ruq,simple,sr,tg,tp,tt,ug,zh,zh-classical,zh-cn,zh-sg,zh-min-nan,zh-mo,zh-my,zh-tw,zh-yue,bbc,ady,qqq
group: toolhub-*
auto-merge: wikimedia/toolhub
repos:
toolhub:
type: wmgerrit
branch: main
url: https://gerrit.wikimedia.org/r/wikimedia/toolhub
url|export: ssh://[email protected]:29418/wikimedia/toolhub
vicuna:
group: out-vicuna
repos:
vicuna:
type: github
url: https://github.com/yarl/vicuna.git
url|export: [email protected]:yarl/vicuna.git
waymarked-trails-site:
group: out-waymarked-trails*
repos:
waymarked-trails-site:
type: github
url: https://github.com/waymarkedtrails/waymarked-trails-site.git
url|export: [email protected]:waymarkedtrails/waymarked-trails-site.git
waymarkedtrails-website:
type: github
url: https://github.com/waymarkedtrails/waymarkedtrails-website.git
url|export: [email protected]:waymarkedtrails/waymarkedtrails-website.git
# Note that this group is called "Revision Scoring" in the English web
# interface.
wiki-ai:
group: wiki-ai-*
repos:
wiki-ai/wikilabels:
type: github
url: https://github.com/wikimedia/wikilabels.git
url|export: [email protected]:wikimedia/wikilabels.git
wiki-ai/wikilabels-wikimedia-config:
type: github
url: https://github.com/wikimedia/wikilabels-wmflabs-deploy.git
url|export: [email protected]:wikimedia/wikilabels-wmflabs-deploy.git
wikiblame:
group: wikiblame
export-threshold: 1
repos:
wikiblame:
type: github
url: https://github.com/FlominatorTM/wikiblame.git
url|export: [email protected]:FlominatorTM/wikiblame.git
wikidata:
group: wikidata-*,cita
auto-merge: ^wikidata/query/gui|wikidata/query-builder
repos:
cita:
type: github
pull-branch: i18n
url: https://github.com/diegodlh/zotero-cita.git
url|export: [email protected]:diegodlh/zotero-cita.git
wikidata/query/gui:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/wikidata/query/gui
url|export: ssh://[email protected]:29418/wikidata/query/gui
wikidata/query/builder:
type: wmgerrit
url: https://gerrit.wikimedia.org/r/wikidata/query-builder
url|export: ssh://[email protected]:29418/wikidata/query-builder
wikidocumentaries:
group: wikidocumentaries
repos:
Wikidocumentaries/wikidocumentaries-ui:
type: github
url: https://github.com/Wikidocumentaries/wikidocumentaries-ui.git
url|export: [email protected]:Wikidocumentaries/wikidocumentaries-ui
wikiedudashboard:
group: wikiedudashboard
export-threshold: 1
repos:
wikiedudashboard:
type: github
url: https://github.com/WikiEducationFoundation/WikiEduDashboard.git
url|export: [email protected]:WikiEducationFoundation/WikiEduDashboard.git
wikimedia-developer-portal:
always-export-languages: en-gb
group: wikimedia-developer-portal
auto-merge: wikimedia/developer-portal
repos:
wikimedia-developer-portal:
type: wmgerrit
branch: main
url: https://gerrit.wikimedia.org/r/wikimedia/developer-portal/
url|export: ssh://[email protected]:29418/wikimedia/developer-portal
wikimedia-github: