summaryrefslogtreecommitdiff
path: root/.github/BOTMETA.yml
blob: f4d4a687fad7832a383835c04df144b91f959c5b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
# BOTMETA V2.0
#
# Data used by ansibot to identify who works on each file in the repo.
# If you have questions about this data format, please join #ansible-devel
# on irc.freenode and ping anyone who is op'ed.
#
# There are 3 primary sections of the data
#
#   automerge
#       During release freezes, the bot uses this key to know if
#       automerging should be on or off. It is a boolean value.
#
#   macros
#       Macros are used to shorten and group some strings and lists.
#       Any macro with a prefix of "team_" is a maintainer group for
#       various files.
#
#   files
#       Each key represents a specific file in the repository.
#       If a module is not listed, its maintainers default to the authors.
#       If the file has no maintainers key, the value of the key is
#       presumed to be the maintainers.
#
#       Keys:
#           maintainers - these people can shipit and automerge
#           notified - these people are always subscribed to relevant issues
#           ignored - these people should never be notified
#           deprecated - this file is deprecated but probably not yet renamed
#           keywords - used to identify this file based on the issue description
#           support - used for files without internal ANSIBLE_METADATA, see
#                     https://github.com/ansible/ansible/labels?q=support for full list
#           labels - list of GitHub labels to apply. Path components of 'file' parent key
#                    which are valid GitHub labels are automatically added.
#           supershipit - supershipiteers can turn a shipit into a supershipit
#

automerge: True
files:
  .github/BOTMETA.yml:
    labels: botmeta
    # Changes to BOTMETA MUST always be reviewed by Core Team
    support: core
  changelogs/fragments/:
    support: community
  $modules:
    ignored: ryansb
  $modules/cloud/amazon/:
    ignored: erydo seiffert simplesteph nadirollo tedder
  $modules/cloud/amazon/aws_api_gateway.py: willthames
  $modules/cloud/amazon/aws_kms.py:
    maintainers: willthames
    ignored: tedder
  $modules/cloud/amazon/cloudformation.py:
    maintainers: ryansb
    ignored: tedder
  $modules/cloud/amazon/cloudfront_info.py: willthames
  $modules/cloud/amazon/cloudtrail.py: $team_ansible
  $modules/cloud/amazon/ec2.py:
    maintainers: $team_ansible
    ignored: skvidal
  $modules/cloud/amazon/ec2_ami.py: willthames
  $modules/cloud/amazon/ec2_asg.py: $team_ansible s-hertel ryansb
  $modules/cloud/amazon/ec2_group.py: $team_ansible
  $modules/cloud/amazon/ec2_group_info.py: willthames
  $modules/cloud/amazon/ec2_instance.py: Shaps
  $modules/cloud/amazon/ec2_instance_info.py: willthames
  $modules/cloud/amazon/ec2_key.py: $team_ansible
  $modules/cloud/amazon/ec2_lc.py: $team_ansible
  $modules/cloud/amazon/ec2_lc_info.py: willthames
  $modules/cloud/amazon/ec2_metric_alarm.py: $team_ansible
  $modules/cloud/amazon/ec2_tag.py: $team_ansible
  $modules/cloud/amazon/ec2_vol.py: $team_ansible
  $modules/cloud/amazon/ec2_vpc_endpoint.py: willthames
  $modules/cloud/amazon/ec2_vpc_endpoint_info.py: willthames
  $modules/cloud/amazon/ec2_vpc_igw.py: willthames
  $modules/cloud/amazon/ec2_vpc_igw_info.py: willthames
  $modules/cloud/amazon/ec2_vpc_nat_gateway_info.py: willthames
  $modules/cloud/amazon/ec2_vpc_net.py: $team_ansible
  $modules/cloud/amazon/ec2_vpc_net_info.py: whiter
  $modules/cloud/amazon/ec2_vpc_peering_info.py: willthames
  $modules/cloud/amazon/ec2_vpc_subnet.py: willthames
  $modules/cloud/amazon/ecs_cluster.py: willthames
  $modules/cloud/amazon/ecs_ecr.py: willthames
  $modules/cloud/amazon/ecs_service.py: willthames
  $modules/cloud/amazon/ecs_service_info.py: willthames
  $modules/cloud/amazon/ecs_task.py: willthames
  $modules/cloud/amazon/ecs_taskdefinition.py: willthames
  $modules/cloud/amazon/ecs_taskdefinition_info.py: willthames
  $modules/cloud/amazon/elasticache.py: alachaum
  $modules/cloud/amazon/elb_target_group_info.py: willthames
  $modules/cloud/amazon/iam.py: $team_ansible
  $modules/cloud/amazon/iam_cert.py: $team_ansible
  $modules/cloud/amazon/iam_group.py: willthames
  $modules/cloud/amazon/iam_managed_policy.py: willthames
  $modules/cloud/amazon/iam_policy.py: $team_ansible
  $modules/cloud/amazon/rds.py:
    ignored: bpennypacker
  $modules/cloud/amazon/rds_param_group.py: scottanderson42
  $modules/cloud/amazon/rds_subnet_group.py: scottanderson42
  $modules/cloud/amazon/route53.py:
    ignored: bpennypacker
  $modules/cloud/amazon/route53_health_check.py: willthames
  $modules/cloud/amazon/sns.py: willthames
  $modules/cloud/amazon/sns_topic.py: willthames
  $modules/cloud/atomic/: krsacme
  $modules/cloud/azure/:
    ignored: chouseknecht jwhitbeck
    maintainers: $team_azure
  $modules/cloud/azure/azure_rm_dnsrecordset.py:
    ignored: ozboms
  $modules/cloud/centurylink/: clc-runner
  $modules/cloud/cloudscale/:
    maintainers: $team_cloudscale
    labels: cloud
  $modules/cloud/cloudstack/:
    maintainers: $team_cloudstack
    labels: cloudstack
  $modules/cloud/digital_ocean/: &digital_ocean
    keywords: [ digital ocean, droplet ]
    labels: [ cloud, digital_ocean ]
    maintainers: $team_digital_ocean
    support: community
  $modules/cloud/dimensiondata/dimensiondata_network.py: tintoy
  $modules/cloud/docker/: &docker
    ignored: ThomasSteinbach
    labels: [ cloud, docker ]
    maintainers: $team_docker
    supershipit: felixfontein
  $modules/cloud/docker/docker_compose.py:
    <<: *docker
    maintainers: $team_docker sluther
  $modules/cloud/docker/docker_network.py:
    <<: *docker
    maintainers: $team_docker olsaki
  $modules/cloud/docker/docker_swarm_service.py:
    <<: *docker
    maintainers: $team_docker hannseman
  $modules/cloud/google/:
    supershipit: $team_google
    maintainers: $team_google
    ignored: supertom
  $modules/cloud/google/gc_storage.py: supertom
  $modules/cloud/hcloud/: &hcloud
    keywords: [ hcloud, hetzner cloud ]
    labels: [ cloud, hcloud ]
    maintainers: $team_hcloud
  $modules/cloud/huawei/: &huawei
    keywords: [ cloud, huawei, hwc ]
    labels: [ cloud, huawei ]
    maintainers: $team_huawei
  $modules/cloud/kubevirt/: &kubevirt
    keywords: [ kubevirt ]
    labels: [ cloud, kubevirt ]
    maintainers: $team_kubevirt
  $modules/cloud/linode/: $team_linode
  $modules/cloud/lxd/: hnakamur
  $modules/cloud/memset/: glitchcrab
  $modules/cloud/misc/ovirt.py: &ovirt
    ignored: vincentvdk
    keywords: [ ovirt, RHEV, RHV ]
    labels: [ cloud, ovirt ]
    maintainers: $team_ovirt
  $modules/cloud/misc/proxmox.py: &virt
    ignored: skvidal
    keywords: [ kvm, libvirt, proxmox, qemu ]
    labels: [ cloud, virt ]
    maintainers: $team_virt
  $modules/cloud/misc/proxmox_kvm.py: *virt
  $modules/cloud/misc/proxmox_template.py: *virt
  $modules/cloud/misc/rhevm.py: *virt
  $modules/cloud/misc/virt.py: *virt
  $modules/cloud/misc/virt_net.py: *virt
  $modules/cloud/misc/virt_pool.py: *virt
  $modules/cloud/misc/xenserver_facts.py:
    ignored: andyhky
  $modules/cloud/opennebula/: ilicmilan kustodian xorel rsmontero
  $modules/cloud/openstack/: $team_openstack
  $modules/cloud/oracle/: &oracle
    labels: [ cloud, oracle ]
    maintainers: $team_oracle
    support: community
  $modules/cloud/ovirt/: *ovirt
  $modules/cloud/profitbricks/: baldwinSPC
  $modules/cloud/rackspace/:
    ignored: sivel angstwad
  $modules/cloud/scaleway/scaleway_volume.py:
    ignored: hekonsek
  $modules/cloud/smartos/: &solaris
    keywords: [ beadm, dladm, illumos, ipadm, nexenta, omnios, openindiana, pfexec, smartos, solaris, sunos, zfs, zpool ]
    labels: solaris
    maintainers: $team_solaris
  $modules/cloud/univention/: keachi
  $modules/cloud/vmware/: &vmware
    ignored: cigamit jcpowermac mtnbikenc tchernomax ckotte
    keywords: [ esx, vcenter, vcsa, vcsim, vsphere ]
    labels: [ cloud, vmware ]
    maintainers: $team_vmware
    notified: lparkes
  $modules/cloud/vmware/vmware_vm_shell.py: chrrrles
  $modules/cloud/vultr/: &vultr
    labels: [ cloud, vultr ]
    maintainers: $team_vultr
  $modules/cloud/webfaction/: quentinsf
  $modules/cloud/xenserver/: bvitnik
  $modules/clustering/k8s/:
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
    labels: k8s
  $modules/clustering/k8s/_kubernetes.py: supertom
  $modules/clustering/openshift/: chouseknecht maxamillion fabianvf flaper87
  $modules/commands/command.py: $team_ansible
  $modules/commands/raw.py: $team_ansible
  $modules/commands/script.py: $team_ansible
  $modules/commands/shell.py: $team_ansible
  $modules/crypto/: &crypto
    keywords: [ acme, letsencrypt, lets encrypt, luks, openssl ]
    labels: crypto
    maintainers: $team_crypto
    supershipit: felixfontein
  $modules/crypto/openssl_certificate.py:
    maintainers: ctrufan
  $modules/crypto/entrust/: ctrufan tylert
  $modules/database/influxdb/: kamsz
  $modules/database/mssql/mssql_db.py: Jmainguy kenichi-ogawa-1988
  $modules/database/mysql/: &mysql
    keywords: [ mariadb, proxysql ]
    labels: [ database, mysql ]
    maintainers: $team_mysql
  $modules/database/postgresql/: &postgresql
    keywords: [ database, postgres, postgresql ]
    labels: postgresql
    maintainers: $team_postgresql
    notified: jbscalia
  $modules/database/proxysql/: *mysql
  $modules/database/vertica/: dareko
  $modules/files/acl.py:
    ignored: astorije
    maintainers: $team_ansible
  $modules/files/assemble.py: $team_ansible
  $modules/files/copy.py: $team_ansible ptux
  $modules/files/fetch.py: $team_ansible
  $modules/files/file.py: $team_ansible
  $modules/files/find.py: $team_ansible
  $modules/files/lineinfile.py: $team_ansible samdoran
  $modules/files/stat.py:
    ignored: bpennypacker
  $modules/files/synchronize.py: $team_ansible
  $modules/files/template.py: $team_ansible
  $modules/files/unarchive.py:
    ignored: dagwieers
    labels: m:unarchive
    maintainers: pileofrogs
  $modules/files/xattr.py: $team_ansible
  $modules/files/xml.py:
    ignored: magnus919
    labels: m:xml
    maintainers: sm4rk0 cmprescott
  $modules/identity/cyberark/:
    notified: cyberark-bizdev
  $modules/identity/ipa/: $team_ipa
  $modules/identity/keycloak/: eikef
  $modules/inventory/add_host.py:
    ignored: skvidal
    maintainers: $team_ansible
  $modules/inventory/group_by.py: $team_ansible
  $modules/messaging/rabbitmq/: $team_rabbitmq
  $modules/monitoring/airbrake_deployment.py:
    ignored: bpennypacker
  $modules/monitoring/datadog_event.py:
    ignored: arturaz
  $modules/monitoring/logentries.py:
    ignored: ivanvanderbyl
  $modules/monitoring/monit.py: brian-brazil
  $modules/monitoring/pagerduty.py:
    ignored: bpennypacker
  $modules/monitoring/zabbix/: eikef D3DeFi rubentsirunyan
  $modules/net_tools/basics/get_url.py: ptux
  $modules/net_tools/basics/slurp.py: $team_ansible
  $modules/net_tools/basics/uri.py:
    ignored: romeotheriault
    maintainers: $team_ansible
  $modules/net_tools/cloudflare_dns.py: andreaso
  $modules/net_tools/exoscale/: resmo
  $modules/net_tools/ldap/: jtyr
  $modules/net_tools/lldp.py:
    ignored: andyhky
  $modules/net_tools/nios/:
    maintainers: $team_networking sganesh-infoblox
    labels:
      - networking
      - infoblox
  $modules/net_tools/netbox/: FragmentedPacket
  $modules/network/a10/: ericchou1 mischapeters
  $modules/network/aci/: &aci
    keywords: [ aci, cisco msc, cisco mso, multisite, multi-site ]
    labels: [ aci, cisco, networking ]
    maintainers: $team_aci
  $modules/network/aireos/: &aireos
    maintainers: $team_aireos
    labels: [ aireos, cisco, networking ]
  $modules/network/aos/: dgarros jeremyschulman
  $modules/network/aruba/: jmighion
  $modules/network/asa/: &asa
    maintainers: $team_asa
    labels: [ asa, cisco, networking ]
  $modules/network/avi/: $team_avi
  $modules/network/bigswitch/: jayakody tedelhourani vuile
  $modules/network/cloudengine/:
    maintainers: $team_huawei
  $modules/network/cnos/: dkasberg amuraleedhar
  $modules/network/cumulus/: $team_cumulus
  $modules/network/dellos10/: skg-net
  $modules/network/dellos6/: abirami-n skg-net
  $modules/network/dellos9/: Dhivyap skg-net
  $modules/network/edgeos/: samdoran
  $modules/network/edgeswitch/: f-bor
  $modules/network/enos/: amuraleedhar
  $modules/network/eos/: trishnaguha
  $modules/network/eric_eccli/: itercheng
  $modules/network/exos/: rdvencioneck $team_extreme
  $modules/network/f5/:
    ignored: Etienne-Carriere mhite mryanlam perzizzle srvg JoeReifel $team_networking
    maintainers: caphrim007 wojtek0806
  $modules/network/files/: $team_networking
  $modules/network/fortios/: bjolivot
  $modules/network/fortimanager/: $team_fortimanager
  $modules/network/ftd/: &ftd
    keywords: [ firepower, ftd ]
    labels: [ cisco, ftd, networking ]
    maintainers: $team_ftd
    support: community
  $modules/network/illumos/: *solaris
  $modules/network/interface/: $team_networking
  $modules/network/ios/: &ios
    labels: [ cisco, ios, networking ]
    maintainers: $team_ios
  $modules/network/iosxr/: &iosxr
    labels: [ cisco, iosxr, networking ]
    maintainers: $team_iosxr
  $modules/network/ironware/: paulquack
  $modules/network/junos/: Qalthos ganeshrn
  $modules/network/icx/: sushma-alethea
  $modules/network/layer2/: $team_networking
  $modules/network/layer3/: $team_networking
  $modules/network/meraki/: &meraki
    labels: [ cisco, meraki, networking ]
    maintainers: $team_meraki
  $modules/network/netconf/netconf_config.py: userlerueda $team_networking
  $modules/network/netconf/netconf_get.py: $team_networking
  $modules/network/netconf/netconf_rpc.py: $team_networking
  $modules/network/netscaler/: $team_netscaler
  $modules/network/netvisor/: $team_netvisor
  $modules/network/nos/: $team_extreme
  $modules/network/nuage/: pdellaert
  $modules/network/nxos/: &nxos
    keywords: [ nxapi ]
    labels: [ cisco, networking, nxos ]
    maintainers: $team_nxos
  $modules/network/nso/: &nso
    labels: [ cisco, networking, nso ]
    maintainers: $team_nso
  $modules/network/onyx/: $team_onyx
  $modules/network/ordnance/: alexanderturner djh00t
  $modules/network/ovs/:
    ignored: stygstra
  $modules/network/panos/: ivanbojer jtschichold shinmog
  $modules/network/protocol/: $team_networking
  $modules/network/routeros/: heuels
  $modules/network/routing/: $team_networking
  $modules/network/slxos/: $team_extreme
  $modules/network/sros/: privateip
  $modules/network/system/: $team_networking
  $modules/network/voss/: $team_extreme
  $modules/network/vyos/: Qalthos NilashishC
  $modules/notification/_osx_say.py: $team_ansible
  $modules/notification/rocketchat.py:
    ignored: ramondelafuente
    maintainers: Deepakkothandan
  $modules/packaging/language/gem.py: $team_ansible
  $modules/packaging/language/maven_artifact.py:
    ignored: chrisisbeef
    maintainers: tumbl3w33d turb
  $modules/packaging/language/npm.py:
    ignored: chrishoffman
    maintainers: shane-walker xcambar
  $modules/packaging/language/pip.py: Lujeni webknjaz
  $modules/packaging/os/apk.py:
    ignored: kbrebanov
    maintainers: tdtrask
  $modules/packaging/os/apt.py: $team_ansible
  $modules/packaging/os/apt_repository.py: $team_ansible
  $modules/packaging/os/openbsd_pkg.py: &bsd
    ignored: bleader
    keywords: [ doas, dragonfly, freebsd, iocage, jail, netbsd, openbsd, opnsense, pfsense ]
    labels: bsd
    maintainers: $team_bsd
  $modules/packaging/os/homebrew.py: &macos
    ignored: frenck
    keywords: [ brew, cask, darwin, homebrew, macosx, macports, osx ]
    labels: macos
    maintainers: $team_macos
    notified: chris-short
  $modules/packaging/os/homebrew_: *macos
  $modules/packaging/os/installp.py: &aix
    keywords: [ aix, efix, lpar, wpar ]
    labels: aix
    maintainers: $team_aix
  $modules/packaging/os/macports.py: *macos
  $modules/packaging/os/package.py: $team_ansible
  $modules/packaging/os/pacman.py:
    ignored: elasticdog
  $modules/packaging/os/pkg5: *solaris
  $modules/packaging/os/pkgin.py: *solaris
  $modules/packaging/os/pkgng.py: *bsd
  $modules/packaging/os/pkgutil.py: *solaris
  $modules/packaging/os/portage.py:
    ignored: sayap
  $modules/packaging/os/portinstall.py: *bsd
  $modules/packaging/os/redhat_subscription.py: alikins kahowell
  $modules/packaging/os/rhn_channel.py: alikins
  $modules/packaging/os/rhn_register.py: $team_rhn
  $modules/packaging/os/snap.py: angristan
  $modules/packaging/os/svr4pkg.py: *solaris
  $modules/packaging/os/swdepot.py: &hpux
    keywords: [ hp-ux ]
    labels: hpux
    maintainers: $team_hpux
  $modules/packaging/os/swupd.py: hnanni
  $modules/packaging/os/yum.py:
    maintainers: $team_ansible kustodian
    ignored: skvidal
  $modules/packaging/os/zypper.py:
    maintainers: $team_suse
    ignored: dirtyharrycallahan robinro
  $modules/remote_management/foreman/: $team_foreman
  $modules/remote_management/hpilo/:
    ignored: dagwieers
    maintainers: haad
  $modules/remote_management/imc/:
    labels: [ cisco ]
    maintainers: $team_imc
  $modules/remote_management/intersight/: &intersight
    labels: [ cisco, remote_management, intersight ]
    maintainers: $team_intersight
  $modules/remote_management/ipmi/: cloudnull
  $modules/remote_management/lxca/: navalkp prabhosa
  $modules/remote_management/manageiq/: $team_manageiq
  $modules/remote_management/redfish/: $team_redfish
  $modules/remote_management/stacki/stacki_host.py: bbyhuy bsanders
  $modules/remote_management/ucs/: &ucs
    labels: [ cisco, remote_management, ucs ]
    maintainers: $team_ucs
  $modules/remote_management/dellemc/: rajeevarakkal
  $modules/source_control/git.py: $team_ansible
  $modules/source_control/github_key.py:
    ignored: erydo
  $modules/source_control/gitlab_: &gitlab
    keywords: [ gitlab, source_control ]
    labels: gitlab
    maintainers: $team_gitlab
    notified: jlozadad
  $modules/storage/hpe3par/: farhan7500 gautamphegde
  $modules/storage/infinidat/: GR360RY vmalloc
  $modules/storage/netapp/:
    maintainers: $team_netapp
    support: community
  $modules/storage/purestorage/:
    maintainers: $team_purestorage
    labels: pure_storage
  $modules/storage/glusterfs/: devyanikota
  $modules/storage/ibm/: tzurE
  $modules/storage/zfs/: *solaris
  $modules/system/aix: *aix
  $modules/system/alternatives.py:
    ignored: DavidWittman
  $modules/system/at.py: $team_ansible
  $modules/system/authorized_key.py: $team_ansible
  $modules/system/beadm.py: *solaris
  $modules/system/facter.py: $team_ansible
  $modules/system/filesystem.py: pilou-
  $modules/system/gconftool2.py: Akasurde
  $modules/system/group.py: $team_ansible
  $modules/system/interfaces_file.py: obourdon
  $modules/system/mksysb.py: *aix
  $modules/system/modprobe.py:
    ignored: stygstra
  $modules/system/mount.py:
    maintainers: $team_ansible jtyr
    ignored: skvidal
  $modules/system/ohai.py: $team_ansible
  $modules/system/osx_defaults.py: *macos
  $modules/system/pam_limits.py:
    ignored: usawa
    maintainers: giovannisciortino
  $modules/system/ping.py: $team_ansible
  $modules/system/puppet.py: nibalizer
  $modules/system/seboolean.py: $team_ansible
  $modules/system/selinux.py: samdoran
  $modules/system/service.py: $team_ansible
  $modules/system/setup.py:
    maintainers: $team_ansible
  $modules/system/solaris: *solaris
  $modules/system/sysctl.py: Akasurde
  $modules/system/systemd.py: $team_ansible
  $modules/system/ufw.py:
    notified: felixfontein
  $modules/system/user.py: $team_ansible samdoran
  $modules/utilities/helper/meta.py: $team_ansible
  $modules/utilities/logic/assert.py: $team_ansible
  $modules/utilities/logic/async_status.py: $team_ansible
  $modules/utilities/logic/async_wrapper.py:
    maintainers: $team_ansible
    support: core
  $modules/utilities/logic/include.py: $team_ansible
  $modules/utilities/logic/include_role.py: $team_ansible
  $modules/utilities/logic/include_vars.py: $team_ansible
  $modules/utilities/logic/pause.py: samdoran
  $modules/utilities/logic/wait_for.py: gregswift
  $modules/web_infrastructure/ansible_tower/: &tower
    labels: [ tower ]
    maintainers: $team_tower
    ignored: wwitzel3
  $modules/web_infrastructure/sophos_utm/:
    maintainers: $team_e_spirit
    keywords:
      - utm
      - sophos
  $modules/web_infrastructure/django_manage.py: scottanderson42
  $modules/web_infrastructure/htpasswd.py: $team_ansible
  $modules/web_infrastructure/jboss: $team_jboss
  $modules/web_infrastructure/jira.py: Slezhuk
  $modules/windows/: &windows
    ignored: angstwad georgefrank h0nIg
    keywords: [ credssp, hyperv, powershell, psrp, winrm ]
    labels: windows
    maintainers: $team_windows
    notified: if-meaton
  $modules/windows/win_security_policy.py:
    <<: *windows
    maintainers: defionscode
  contrib/:
    support: community
  contrib/inventory:
    keywords:
      - dynamic inventory script
      - dynamic inventory
      - inventory script
    labels: c:inventory/contrib_script
    support: community
  contrib/inventory/digital_ocean.py: *digital_ocean
  contrib/inventory/docker: *docker
  contrib/inventory/foreman.py:
    maintainers: $team_foreman
  contrib/inventory/linode:
    keywords:
      - linode dynamic inventory script
    maintainers: $team_linode
    labels:
      - cloud
      - linode
  contrib/inventory/openstack_inventory.py:
    keywords:
      - openstack dynamic inventory script
    maintainers: $team_openstack
    labels:
      - cloud
  contrib/inventory/ovirt4.py: *ovirt
  contrib/inventory/infoblox.py:
    keywords:
      - infoblox dynamic inventory script
    labels:
      - ipam
      - nios
      - networking
    maintainers: $team_networking
  contrib/inventory/azure_rm.py:
    keywords:
      - azure inventory
      - azure rm inventory
      - azure azure_rm dynamic inventory script
    labels:
      - cloud
      - azure
    maintainers: $team_azure
  contrib/inventory/ec2:
    keywords:
      - aws dynamic inventory
      - aws inventory
      - ec2 inventory
      - ec2 dynamic inventory
      - ec2.py dynamic inventory script
      - ec2.py inventory script
      - ec2.py inventory
    labels:
      - cloud
      - aws
    notified: ryansb s-hertel willthames
  contrib/inventory/vmware.py:
    keywords:
      - vmware inventory
      - vmware dynamic inventory script
    labels:
      - cloud
    maintainers: $team_vmware
  contrib/inventory/vmware_inventory.py:
    keywords:
      - vmware inventory
      - vmware dynamic inventory script
    labels:
      - cloud
      - vmware
    maintainers: $team_vmware
  lib/ansible/inventory:
    keywords:
      - core inventory
      - inventory
      - inventory parsing
#############################################
# MODULE_UTILS
  $module_utils:
    support: community
  $module_utils/acme.py: *crypto
  $module_utils/ansible_tower.py: *tower
  $module_utils/azure_rm_common.py:
    maintainers: $team_azure
    labels:
      - azure
      - cloud
  $module_utils/basic.py:
    support: core
  $module_utils/urls.py:
    support: core
  $module_utils/six:
    support: core
  $module_utils/common:
    support: core
  $module_utils/compat:
    support: core
  $module_utils/_text.py:
    support: core
  $module_utils/parsing:
    support: core
  $module_utils/splitter.py:
    support: core
  $module_utils/yumdnf.py:
    support: core
  $module_utils/ansible_release.py:
    support: core
  $module_utils/distro:
    support: core
  $module_utils/ismount.py:
    support: core
  $module_utils/json_utils.py:
    support: core
  $module_utils/pycompat24.py:
    support: core
  $module_utils/service.py:
    support: core
  $module_utils/cloudscale.py:
    maintainers: $team_cloudscale
  $module_utils/cloudstack.py:
    maintainers: $team_cloudstack
    labels: cloudstack
  $module_utils/crypto.py: *crypto
  $module_utils/csharp: &windows_core
    labels: windows
    maintainers: $team_windows_core
    support: core
  $module_utils/docker/: *docker
  $module_utils/ec2.py:
    support: core
    labels:
      - aws
      - cloud
  $module_utils/ecs/:
    maintainers: ctrufan tylert $team_crypto
  $module_utils/facts:
    support: core
  $module_utils/facts/hardware/aix.py: *aix
  $module_utils/facts/hardware/darwin.py: *macos
  $module_utils/facts/hardware/dragonfly.py: *bsd
  $module_utils/facts/hardware/freebsd.py: *bsd
  $module_utils/facts/hardware/hpux.py: *hpux
  $module_utils/facts/hardware/netbsd.py: *bsd
  $module_utils/facts/hardware/openbsd.py: *bsd
  $module_utils/facts/hardware/sunos.py: *solaris
  $module_utils/facts/network/aix.py: *aix
  $module_utils/facts/network/darwin.py: *macos
  $module_utils/facts/network/dragonfly.py: *bsd
  $module_utils/facts/network/freebsd.py: *bsd
  $module_utils/facts/network/generic_bsd.py: *bsd
  $module_utils/facts/network/hpux.py: *hpux
  $module_utils/facts/network/netbsd.py: *bsd
  $module_utils/facts/network/openbsd.py: *bsd
  $module_utils/facts/network/sunos.py: *solaris
  $module_utils/facts/virtual/dragonfly.py: *bsd
  $module_utils/facts/virtual/freebsd.py: *bsd
  $module_utils/facts/virtual/hpux.py: *hpux
  $module_utils/facts/virtual/netbsd.py: *bsd
  $module_utils/facts/virtual/openbsd.py: *bsd
  $module_utils/facts/virtual/sunos.py: *solaris
  $module_utils/gcp_utils.py:
    maintainers: $team_google
    supershipit: $team_google
  $module_utils/gitlab.py: *gitlab
  $module_utils/hwc_utils.py: &huawei_hwc
    <<: *huawei
    support: community
    labels:
      - networking
      - huawei
  $module_utils/ipa.py:
    maintainers: $team_ipa
  $module_utils/k8s:
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
    labels:
      - clustering
      - k8s
  $module_utils/identity/keycloak/:
     maintainers: eikef
     support: community
  $module_utils/kubevirt.py: *kubevirt
  $module_utils/manageiq.py:
    maintainers: $team_manageiq
  $module_utils/memset.py:
    maintainers: glitchcrab
    labels: cloud
  $module_utils/mysql.py: *mysql
  $module_utils/net_tools/nios/:
    support: core
    labels:
      - networking
      - infoblox
    maintainers: $team_networking sganesh-infoblox
  $module_utils/netapp:
    maintainers: $team_netapp
    support: community
  $module_utils/network:
    labels: networking
  $module_utils/network/a10:
    maintainers: ericchou1 mischapeters
  $module_utils/network/aci: *aci
  $module_utils/network/aireos: *aireos
  $module_utils/network/aos:
    maintainers: dgarros jeremyschulman
  $module_utils/network/aruba:
    maintainers: jmighion
  $module_utils/network/asa: *asa
  $module_utils/network/avi:
    maintainers: $team_avi
  $module_utils/network/bigswitch:
    maintainers: jayakody tedelhourani vuile
  $module_utils/network/cloudengine:
    maintainers: $team_huawei
  $module_utils/network/cnos:
    maintainers: dkasberg amuraleedhar
  $module_utils/network/common:
    support: network
    maintainers: $team_networking
  $module_utils/network/dellos6:
    maintainers: skg-net
  $module_utils/network/dellos9:
    maintainers: skg-net
  $module_utils/network/dellos10:
    maintainers: skg-net
  $module_utils/network/edgeswitch:
    maintainers: f-bor
  $module_utils/network/enos:
    maintainers: amuraleedhar
  $module_utils/network/eos:
    support: network
    maintainers: $team_networking
  $module_utils/network/eric_eccli:
    support: network
    maintainers: $team_networking
                 itercheng
  $module_utils/network/exos:
    maintainers: rdvencioneck $team_extreme
  $module_utils/network/f5:
    maintainers: caphrim007 wojtek0806
  $module_utils/f5_utils.py:
    maintainers: caphrim007 wojtek0806
    labels:
      - f5
  $module_utils/network/fortios:
    maintainers: bjolivot
  $module_utils/network/fortimanager:
    maintainers: $team_fortimanager
    labels:
      - fortimanager
      - networking
  $module_utils/network/ftd: *ftd
  $module_utils/network/ios:
    <<: *ios
    maintainers: $team_networking $team_ios
    support: network
  $module_utils/network/iosxr:
    <<: *iosxr
    maintainers: $team_networking $team_iosxr
    support: network
  $module_utils/network/ironware:
    maintainers: paulquack
  $module_utils/network/junos:
    support: network
  $module_utils/network/meraki: *meraki
  $module_utils/network/netconf:
    support: network
    maintainers: $team_networking
  $module_utils/network/netscaler:
    maintainers: $team_netscaler
  $module_utils/network/nos:
    maintainers: $team_extreme
  $module_utils/network/nso: *nso
  $module_utils/network/nxos:
    <<: *nxos
    support: network
  $module_utils/network/onyx:
    maintainers: $team_onyx
  $module_utils/network/ordnance:
    maintainers: alexanderturner djh00t
  $module_utils/network/panos:
    maintainers: ivanbojer jtschichold shinmog
  $module_utils/network/routeros:
    maintainers: heuels
  $module_utils/network/slxos:
    maintainers: $team_extreme
  $module_utils/network/voss:
    maintainers: $team_extreme
  $module_utils/network/vyos:
    support: network
    maintainers: $team_networking
  $module_utils/openstack.py:
    maintainers: $team_openstack
    labels:
      - cloud
  $module_utils/oracle/: *oracle
  $module_utils/ovirt.py: *ovirt
  $module_utils/postgres.py: *postgresql
  $module_utils/powershell: *windows_core
  $module_utils/pure.py:
    maintainers: $team_purestorage
    labels: pure_storage
  $module_utils/redfish_utils.py:
    maintainers: $team_redfish
  $module_utils/remote_management/intersight: *intersight
  $module_utils/remote_management/lxca:
    maintainers: navalkp prabhosa
    labels: lxca
  $module_utils/remote_management/ucs: *ucs
  $module_utils/remote_management/dellemc:
    maintainers: rajeevarakkal
  $module_utils/scaleway.py: &scaleway
    maintainers: $team_scaleway
    labels:
      - cloud
  $module_utils/utm_utils.py:
    maintainers: $team_e_spirit
  $module_utils/vmware: *vmware
  $module_utils/vultr.py: *vultr
  $module_utils/xenserver.py:
      maintainers: bvitnik
  $module_utils/storage/hpe3par/hpe3par.py: &hpe3par
    maintainers: farhan7500 gautamphegde
    support: community

###############################
# playbook
  lib/ansible/playbook/handler.py:
    keywords:
      - handlers
  lib/ansible/playbook/role:
    keywords:
      - roles path
      - roles_path
      - role
      - role path
  lib/ansible/playbook/role/include.py:
    keywords:
      - include role
      - include_role
      - role include
  lib/ansible/playbook/role/requirement.py:
    keywords:
      - role dependencies
      - role dep
      - role dependency
###############################
# plugins

  $plugins:
    support: community
  $plugins/__init__.py:
    support: core
  $plugins/loader.py:
    support: core

###############################
# action

  $plugins/action/add_host.py:
    support: core
  $plugins/action/assemble.py:
    support: core
  $plugins/action/assert.py:
    support: core
  $plugins/action/aws_s3.py:
    support: core
  $plugins/action/command.py:
    support: core
  $plugins/action/cli:
    support: network
  $plugins/action/copy.py:
    support: core
  $plugins/action/debug.py:
    support: core
  $plugins/action/fail.py:
    support: core
  $plugins/action/fetch.py:
    support: core
  $plugins/action/gather_facts.py:
    support: core
  $plugins/action/group_by.py:
    support: core
  $plugins/action/include_vars.py:
    support: core
  $plugins/action/__init__.py:
    support: core
  $plugins/action/normal.py:
    support: core
  $plugins/action/package.py:
    support: core
  $plugins/action/patch.py:
    support: core
  $plugins/action/pause.py:
    support: core
  $plugins/action/raw.py:
    support: core
  $plugins/action/reboot.py:
    support: core
  $plugins/action/script.py:
    support: core
  $plugins/action/service.py:
    support: core
  $plugins/action/set_fact.py:
    support: core
  $plugins/action/shell.py:
    support: core
  $plugins/action/synchronize.py:
    support: core
  $plugins/action/telnet.py:
    support: core
  $plugins/action/template.py:
    support: core
  $plugins/action/uri.py:
    support: core
  $plugins/action/wait_for_connection.py:
    support: core
  $plugins/action/win: *windows_core
  $plugins/action/yum.py:
    support: core
  $plugins/action/asa: *asa
  $plugins/action/aireos: *aireos
  $plugins/action/aruba:
    maintainers: jmighion
    labels: networking
  $plugins/action/bigip:
    maintainers: caphrim007 wojtek0806
    labels: networking
  $plugins/action/bigiq:
    maintainers: caphrim007 wojtek0806
    labels: networking
  $plugins/action/dellos:
    maintainers: skg-net
    labels: networking
  $plugins/action/eos:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/action/ios:
    <<: *ios
    maintainers: $team_networking $team_ios
    support: network
  $plugins/action/iosxr:
    <<: *iosxr
    maintainers: $team_networking $team_iosxr
    support: network
  $plugins/action/ironware:
    maintainers: paulquack
    labels: networking
  $plugins/action/junos:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/action/net:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/action/nxos:
    <<: *nxos
    support: network
    maintainers: $team_networking
  $plugins/action/onyx_config.py:
    maintainers: $team_onyx
    labels: networking
  $plugins/action/sros:
    maintainers: $team_networking
    labels: networking
  $plugins/action/vyos:
    support: network
    maintainers: $team_networking
    labels: networking
###############################
# plugins/become
  $plugins/become:
    support: community
  $plugins/become/__init__.py:
    support: core
  $plugins/become/su.py:
    support: core
  $plugins/become/sudo.py:
    support: core
###############################
# plugins/cache
  $plugins/cache/__init__.py:
    support: core
  $plugins/cache/base.py:
    support: core
###############################
# plugins/callbacks
  $plugins/callback/__init__.py:
    support: core
  $plugins/callback/debug:
    support: core
  $plugins/callback/default:
    support: core
  $plugins/callback/grafana_annotations.py:
    maintainers: rrey
  $plugins/callback/foreman.py:
    maintainers: $team_foreman
  $plugins/callback/junit:
    support: core
  $plugins/callback/minimal:
    support: core
  $plugins/callback/oneline:
    support: core
  $plugins/callback/say.py: *macos
  $plugins/callback/profile:
    support: core
  $plugins/callback/stderr.py:
    maintainers: ysn2233
  $plugins/callback/sumologic.py:
    maintainers: ryancurrah
  $plugins/callback/tree:
    support: core
  $plugins/callback/unixy.py:
    maintainers: akatch
###############################
# plugins/cliconf


  $plugins/cliconf/:
    labels: networking
  $plugins/cliconf/edgeswitch.py:
    maintainers: f-bor
  $plugins/cliconf/eos.py:
    support: network
    maintainers: $team_networking
  $plugins/cliconf/eric_eccli.py:
    support: network
    maintainers: $team_networking
                 itercheng
  $plugins/cliconf/exos.py:
    maintainers: rdvencioneck $team_extreme
  $plugins/cliconf/ios.py:
    <<: *ios
    maintainers: $team_networking $team_ios
    support: network
  $plugins/cliconf/iosxr.py:
    <<: *iosxr
    maintainers: $team_networking $team_iosxr
    support: network
  $plugins/cliconf/ironware.py:
    maintainers: paulquack
  $plugins/cliconf/junos.py:
    support: network
    maintainers: $team_networking
  $plugins/cliconf/nos.py:
    maintainers: $team_extreme
  $plugins/cliconf/nxos.py:
    <<: *nxos
    support: network
  $plugins/cliconf/onyx.py:
    maintainers: $team_onyx
  $plugins/cliconf/routeros.py:
    maintainers: heuels
  $plugins/cliconf/slxos.py:
    maintainers: $team_extreme
  $plugins/cliconf/voss.py:
    maintainers: $team_extreme
    labels: networking
  $plugins/cliconf/vyos.py:
    support: network
    maintainers: $team_networking
###############################
# plugins/connection
  $plugins/connection/:
    support: core
  $plugins/connection/buildah.py:
    support: community
    maintainers: TomasTomecek
  $plugins/connection/docker.py:
    <<: *docker
    support: community
  $plugins/connection/httpapi.py:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/connection/kubectl.py:
    support: community
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
    labels: k8s
  $plugins/connection/lxd.py:
    maintainers: mattclay
  $plugins/connection/netconf.py:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/connection/oc.py:
    support: community
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
  $plugins/connection/network_cli.py:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/connection/persistent.py:
    maintainers: $team_networking
    labels: networking
  $plugins/connection/podman.py:
    support: community
    maintainers: TomasTomecek
  $plugins/connection/psrp.py: *windows_core
  $plugins/connection/saltstack.py:
    support: community
  $plugins/connection/winrm.py: *windows_core
  $plugins/connection/vmware_tools.py:
    support: community
    maintainers: $team_vmware
    labels:
      - vmware
      - cloud
###############################
# plugins/doc_fragments
  $plugins/doc_fragments/:
    support: community
  $plugins/doc_fragments/__init__.py:
    support: core
  $plugins/doc_fragments/aci.py: *aci
  $plugins/doc_fragments/acme.py: *crypto
  $plugins/doc_fragments/cloudstack.py:
    maintainers: $team_cloudstack
    labels: cloudstack
  $plugins/doc_fragments/docker.py:
    <<: *docker
    support: community
  $plugins/doc_fragments/gcp.py:
    support: community
    supershipit: $team_google
    maintainers: $team_google
  $plugins/doc_fragments/hwc.py:
    maintainers: $team_huawei
  $plugins/doc_fragments/intersight.py: *intersight
  $plugins/doc_fragments/mso.py: *aci
  $plugins/doc_fragments/mysql.py: *mysql
  $plugins/doc_fragments/postgres.py: *postgresql
  $plugins/doc_fragments/proxysql.py: *mysql
  $plugins/doc_fragments/ucs.py: *ucs
  $plugins/doc_fragments/vultr.py: *vultr
  $plugins/doc_fragments/ovirt.py: *ovirt
  $plugins/doc_fragments/ovirt_info.py: *ovirt
  $plugins/doc_fragments/xenserver.py:
    maintainers: bvitnik
  $plugins/doc_fragments/hpe3par.py: *hpe3par
  $plugins/doc_fragments/oracle*: *oracle
###############################
# plugins/filter
  $plugins/filter/:
    support: community
  $plugins/filter/__init__.py:
    support: core
  $plugins/filter/core.py:
    support: core
  $plugins/filter/mathstuff.py:
    support: core
  $plugins/filter/network.py:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/filter/urlsplit.py:
    support: core
###############################
# plugins/httpapi
  $plugins/httpapi:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/httpapi/ftd.py: *ftd
  $plugins/httpapi/exos.py:
    maintainers: $team_extreme
###############################
# plugins/inventory
  $plugins/inventory/__init__.py:
    support: core
  $plugins/inventory/aws_ec2.py:
    maintainers: s-hertel
  $plugins/inventory/docker: *docker
  $plugins/inventory/docker_swarm.py:
    <<: *docker
    maintainers: $team_docker morph027
  $plugins/inventory/foreman.py:
    maintainers: $team_foreman
  $plugins/inventory/gcp_compute.py:
    maintainers: $team_google
    supershipit: $team_google
  $plugins/inventory/hcloud.py: *hcloud
  $plugins/inventory/ini.py:
    support: core
  $plugins/inventory/k8s.py:
    support: community
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
    labels: k8s
  $plugins/inventory/linode.py:
    keywords:
      - linode dynamic inventory script
    maintainers: $team_linode
    labels:
      - cloud
      - linode
  $plugins/inventory/netbox.py:
    support: community
    maintainers: $team_netbox
  $plugins/inventory/openshift.py:
    support: community
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
  $plugins/inventory/openstack.py:
    maintainers: $team_openstack
    keywords:
      - openstack
      - inventory
    labels:
      - cloud
  $plugins/inventory/scaleway.py: *scaleway
  $plugins/inventory/script.py:
    support: core
  $plugins/inventory/vmware_vm_inventory.py:
    labels:
      - vmware
      - cloud
    maintainers: $team_vmware
    keywords:
      - vmware inventory
      - vmware dynamic inventory plugin
    ignored: cigamit jcpowermac mtnbikenc tchernomax ckotte
  $plugins/inventory/vultr.py: *vultr
  $plugins/inventory/yaml.py:
    support: core

###############################
# plugins/lookup
  $plugins/lookup/__init__.py:
    support: core
  $plugins/lookup/config.py:
    support: core
  $plugins/lookup/dict.py:
    support: core
  $plugins/lookup/env.py:
    support: core
  $plugins/lookup/file.py:
    support: core
  $plugins/lookup/fileglob.py:
    support: core
  $plugins/lookup/first_found.py:
    support: core
  $plugins/lookup/indexed_items.py:
    support: core
  $plugins/lookup/inventory_hostnames.py:
    support: core
  $plugins/lookup/items.py:
    support: core
  $plugins/lookup/lines.py:
    support: core
  $plugins/lookup/list.py:
    support: core
  $plugins/lookup/nested.py:
    support: core
  $plugins/lookup/password.py:
    support: core
  $plugins/lookup/pipe.py:
    support: core
  $plugins/lookup/random_choice.py:
    support: core
  $plugins/lookup/sequence.py:
    support: core
  $plugins/lookup/subelements.py:
    support: core
  $plugins/lookup/template.py:
    support: core
  $plugins/lookup/together.py:
    support: core
  $plugins/lookup/url.py:
    support: core
  $plugins/lookup/varnames.py:
    support: core
  $plugins/lookup/vars.py:
    support: core
  $plugins/lookup/aws:
    labels:
      - aws
      - cloud
  $plugins/lookup/conjur_variable.py:
    maintainers: $team_cyberark_conjur
    notified: cyberark-bizdev
  $plugins/lookup/dig:
    maintainers: jpmens
  $plugins/lookup/cyberarkpassword.py:
    notified: cyberark-bizdev
  $plugins/lookup/hashi_vault: defionscode
  $plugins/lookup/k8s.py:
    support: community
    maintainers: chouseknecht maxamillion fabianvf flaper87 willthames
    labels: k8s
  $plugins/lookup/nios:
    support: core
    maintainers: $team_networking sganesh-infoblox
    labels:
      - networking
      - infoblox
  $plugins/lookup/onepassword:
    maintainers: samdoran
    ignored: azenk
  $plugins/lookup/manifold:
    maintainers: galanoff
###############################
# plugins/netconf
  $plugins/netconf/:
    support: network
    maintainers: $team_networking
    labels: networking
  $plugins/lookup/rabbitmq.py:
    maintainers: Im0
    support: community
  $plugins/netconf/sros.py:
    maintainers: wisotzky $team_networking
    labels: networking
###############################
# plugins/shell
  $plugins/shell/:
    support: core
  $plugins/shell/powershell.py: *windows_core
###############################
# plugins/strategy
  $plugins/strategy/:
    support: core
###############################
# plugins/terminal
  $plugins/terminal/:
    labels: networking
  $plugins/terminal/__init__.py:
    support: network
  $plugins/terminal/asa.py: *asa
  $plugins/terminal/dellos10:
    maintainers: skg-net
  $plugins/terminal/edgeos.py:
    maintainers: samdoran
  $plugins/terminal/edgeswitch.py:
    maintainers: f-bor
  $plugins/terminal/eos.py:
    support: network
    maintainers: $team_networking
  $plugins/terminal/eric_eccli.py:
    support: community
    maintainers: itercheng
  $plugins/terminal/exos.py:
    maintainers: rdvencioneck $team_extreme
  $plugins/terminal/ios.py:
    <<: *ios
    maintainers: $team_networking $team_ios
    support: network
  $plugins/terminal/iosxr.py:
    <<: *iosxr
    maintainers: $team_networking $team_iosxr
    support: network
  $plugins/terminal/ironware.py:
    maintainers: paulquack
  $plugins/terminal/junos.py:
    support: network
    maintainers: $team_networking
  $plugins/terminal/nos.py:
    maintainers: $team_extreme
  $plugins/terminal/nxos.py:
    <<: *nxos
    support: network
    maintainers: $team_networking
  $plugins/terminal/onyx.py:
    maintainers: $team_onyx
  $plugins/terminal/routeros.py:
    maintainers: heuels
  $plugins/terminal/slxos.py:
    maintainers: $team_extreme
  $plugins/terminal/sros.py:
    maintainers: $team_networking
  $plugins/terminal/voss.py:
    maintainers: $team_extreme
  $plugins/terminal/vyos.py:
    support: network
    maintainers: $team_networking
###############################
# plugins/test
  $plugins/test:
    support: core
###############################
# plugins/vars
  $plugins/vars:
    support: core
###############################
  lib/ansible/release.py:
    notified: mattclay nitzmahone

##############################
# other lib
  lib/ansible/cli/scripts/ansible_connection_cli_stub.py:
    keywords:
      - persistent connection
    labels: networking
  lib/ansible/executor/powershell: *windows_core
  lib/ansible/template:
    keywords:
      - jinja
      - jinja2
##############################
# docs
  docs/:
    maintainers:
      - acozine
  docs/docsite/rst/community/:
    maintainers:
      - gundalow
  docs/docsite/rst/dev_guide/:
    maintainers:
      - gundalow
  docs/docsite/rst/dev_guide/developing_modules_general_aci.rst: *aci
  docs/docsite/rst/network/:
    labels: networking
    maintainers:
      - samccann
  docs/docsite/rst/scenario_guides/guide_aci.rst: *aci
  docs/docsite/rst/scenario_guides/guide_aws.rst:
    labels:
      - aws
      - cloud
    maintainers: s-hertel
  docs/docsite/rst/scenario_guides/guide_azure.rst:
    labels:
      - azure
      - cloud
    maintainers: $team_azure
  docs/docsite/rst/scenario_guides/guide_cloudstack.rst:
    labels:
      - cloud
      - cloudstack
    maintainers: $team_cloudstack
  docs/docsite/rst/scenario_guides/guide_docker.rst: *docker
  docs/docsite/rst/scenario_guides/guide_vmware.rst: *vmware
  docs/docsite/rst/user_guide/intro_bsd.rst: *bsd
  docs/docsite/rst/user_guide/windows: *windows_core
###############################
# 'test' is a component path, then 'test' label will be automatically added
  test/lib/ansible_test/_data/sanity/validate-modules:
    notified:
      - mattclay
    keywords:
      - validate-modules
  test/lib/ansible_test/_data/sanity/validate-modules/validate_modules/schema.py:
    notified:
      - gundalow
      - sivel
  test/lib/ansible_test/_data/sanity/validate-modules/validate_modules/main.py:
    notified:
      - gundalow
      - sivel
  test/integration/targets/aci_: *aci
  test/integration/targets/asa_: *asa
  test/integration/targets/acme: *crypto
  test/integration/targets/aix: *aix
  test/integration/targets/cloudscale:
    maintainers: $team_cloudscale
    labels: cloud
  test/integration/targets/cs_:
    maintainers: $team_cloudstack
    labels: cloudstack
  test/integration/targets/docker: *docker
  test/integration/targets/gcp:
    maintainers: $team_google
    supershipit: $team_google
  test/integration/targets/hwc_:
    maintainers: $team_huawei
  test/integration/targets/inventory_docker: *docker
  test/integration/targets/inventory_docker_swarm:
    <<: *docker
    maintainers: $team_docker morph027
  test/integration/targets/intersight: *intersight
  test/integration/targets/exos_: $team_extreme
  test/integration/targets/ios_: *ios
  test/integration/targets/iosxr_: *ios
  test/integration/targets/meraki_: *meraki
  test/integration/targets/mso_: *aci
  test/integration/targets/mysql: *mysql
  test/integration/targets/nxos_: *nxos
  test/integration/targets/netapp:
    maintainers: $team_netapp
    support: community
  test/integration/targets/openssl: *crypto
  test/integration/targets/postgresql: *postgresql
  test/integration/targets/scaleway_: *scaleway
  test/integration/targets/setup_acme: *crypto
  test/integration/targets/setup_docker: *docker
  test/integration/targets/setup_openssl: *crypto
  test/integration/targets/setup_mysql_db: *mysql
  test/integration/targets/setup_zabbix:
    maintainers: eikef D3DeFi rubentsirunyan
  test/integration/targets/ucs_: *ucs
  test/integration/targets/vultr: *vultr
  test/legacy/:
    notified: mattclay
  test/lib/:
    notified: mattclay
  test/lib/ansible_test/_internal/cloud/acme.py: *crypto
  test/sanity/:
    notified: mattclay
  test/units/module_utils/docker/:
    <<: *docker
    support: community
  test/units/module_utils/facts/network/test_generic_bsd.py: *bsd
  test/units/module_utils/test_netapp.py:
    maintainers: $team_netapp
    support: community
  test/units/module_utils/hwc:
    maintainers: $team_huawei
  test/units/module_utils/acme: *crypto
  test/units/module_utils/xenserver/: bvitnik
  test/units/modules/cloud/docker:
    <<: *docker
    support: community
  test/units/modules/cloud/xenserver/: bvitnik
  test/units/modules/crypto/: *crypto
  test/units/modules/network:
    maintainers: $team_networking
    labels: networking
  test/units/modules/network/aireos: *aireos
  test/units/modules/network/exos: $team_extreme
  test/units/modules/network/ftd: *ftd
  test/units/modules/network/ios: *ios
  test/units/modules/network/iosxr: *iosxr
  test/units/modules/network/nso: *nso
  test/units/modules/network/nxos: *nxos
  test/units/modules/storage/hpe3par: *hpe3par
  test/units/modules/storage/netapp:
    maintainers: $team_netapp
    support: community
  test/utils/shippable/:
    notified: mattclay
  hacking/report.py:
    notified: mattclay
macros:
  module_utils: lib/ansible/module_utils
  modules: lib/ansible/modules
  plugins: lib/ansible/plugins
  team_aci: brunocalogero dagwieers devarshishah3 fadallar jmcgill298 koladiya mtorelli rsmeyers schunduri smnmtzgr
  team_aireos: jmighion
  team_aix: bcoca dagwieers d-little flynn1973 gforster kairoaraujo marvin-sinister mator molekuul MorrisA ramooncamacho wtcross
  team_asa: NilashishC ogenstad
  team_ansible: []
  team_avi: ericsysmin grastogi23 khaltore
  team_azure: haroldwongms nitzmahone yuwzho yungezz zikalino
  team_bsd: bcoca dagwieers dch jasperla JoergFiedler MacLemon mekanix opoplawski overhacked tuxillo
  team_cloudscale: gaudenz resmo
  team_cloudstack: resmo dpassante rhtyd
  team_crypto: felixfontein MarkusTeufelberger puiterwijk resmo Spredzy Shaps Xyon
  team_cumulus: isharacomix jrrivers
  team_cyberark_conjur: jvanderhoof ryanprior
  team_digital_ocean: aluvenko, BondAnthony, mgregson
  team_docker: akshay196 danihodovic dariko DBendit felixfontein jwitko kassiansun tbouvet WojciechowskiPiotr
  team_e_spirit: MatrixCrawler getjack
  team_extreme: bigmstone LindsayHill ujwalkomarla
  team_foreman: ehelms ares xprazak2 ekohl
  team_fortimanager: Ghilli3 lweighall p4r4n0y1ng Ftntcorecse
  team_ftd: annikulin
  team_gitlab: dj-wasabi Lunik marwatk Shaps waheedi
  team_google: rambleraptor erjohnso
  team_hcloud: cschmitt-hcloud LKaemmerling
  team_hpux: bcoca dagwieers davx8342
  team_huawei: zhongjun2 zengchen1024 niuzhenguo freesky-edward TommyLike edisonxiang QijunPan xuxiaowei0512 hwDCN
  team_imc: dagwieers
  team_intersight: dsoper2 movinalot
  team_ios: justjais
  team_iosxr: justjais NilashishC
  team_ipa: Nosmoht Akasurde fxfitz
  team_jboss: jairojunior wbrefvem Wolfant
  team_kubevirt: machacekondra mmazur pkliczewski
  team_linode: InTheCloudDan lwm displague rmcintosh
  team_macos: akasurde dagwieers kyleabenson martinm82
  team_manageiq: gtanzillo abellotti zgalor yaacov cben
  team_meraki: kbreit
  team_mysql: Alexander198961 bmalynovytch bmildren michaelcoburn oneiroi tolland Xyon Andersson007 kurtdavis
  team_netapp: hulquest lmprice ndswartz amit0701 schmots1 carchi8py lonico
  team_netbox: sieben anthony25 FragmentedPacket nikkytub pilou-
  team_netscaler: chiradeep giorgos-nikolopoulos
  team_netvisor: Qalthos amitsi pdam preetiparasar csharpe-pn
  team_networking: Qalthos ganeshrn trishnaguha justjais NilashishC danielmellado
  team_nso: cmoberg cnasten tbjurman
  team_nxos: mikewiebe rahushen trishnaguha chrisvanheuveln
  team_onyx: anasbadaha samerd
  team_openstack: emonty juliakreger rcarrillocruz Shrews dagnello mnaser odyssey4me cloudnull gtema
  team_openswitch: Qalthos danielmellado
  team_oracle: nalsaber manojmeda mross22
  team_ovirt: machacekondra mwperina mnecas
  team_postgresql: amenonsen Andersson007 andytom Dorn- jbscalia kostiantyn-nemchenko kustodian matburt nerzhul sebasmannem tcraxs
  team_purestorage: sdodsley sile16 lionmax genegr raekins bannaych opslounge dnix101
  team_rabbitmq: chrishoffman manuel-sousa hyperized
  team_redfish: jose-delarosa mraineri tomasg2012 billdodd
  team_rhn: alikins barnabycourt FlossWare vritant
  team_scaleway: remyleone abarbare DenBeke jerome-quere kindermoumoute QuentinBrosse
  team_solaris: bcoca dagwieers danowar2k fishman jpdasma jasperla mator scathatheworm troy2914 xen0l
  team_suse: evrardjp toabctl dcermak lrupp commel
  team_tower: ghjm matburt ryanpetrello rooftopcellist AlanCoding jladdjr kdelee chrismeyersfsu
  team_ucs: dsoper2 movinalot SDBrett vallard vvb
  team_vmware: Akasurde warthog9 Tomorrow9 goneri pgbidkar
  team_virt: joshainglis karmab
  team_vultr: resmo Spredzy
  team_windows: jborean93 jhawkesworth nitzmahone ShachafGoldstein
  team_windows_core: nitzmahone jborean93