From 11205eefee7b10bd2f74619810896424584e3b77 Mon Sep 17 00:00:00 2001
From: Felix Fontein <felix@fontein.de>
Date: Wed, 5 Jan 2022 22:54:21 +0100
Subject: [PATCH] Fix BOTMETA and corresponding sanity test (#3989)

* Fix BOTMETA and authors mistakes.

* Fix BOTMETA sanity test regex.
---
 .github/BOTMETA.yml               | 12 ++++++++++--
 plugins/modules/system/sudoers.py |  2 +-
 tests/sanity/extra/botmeta.py     |  2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/.github/BOTMETA.yml b/.github/BOTMETA.yml
index 09bd623981..3e319e200d 100644
--- a/.github/BOTMETA.yml
+++ b/.github/BOTMETA.yml
@@ -166,9 +166,9 @@ files:
   $inventories/proxmox.py:
     maintainers: $team_virt ilijamt
   $inventories/xen_orchestra.py:
-    maintainers: shinuza
+    maintainers: ddelnano shinuza
   $inventories/icinga2.py:
-    maintainers: bongoeadgc6
+    maintainers: BongoEADGC6
   $inventories/scaleway.py:
     maintainers: $team_scaleway
     labels: cloud scaleway
@@ -324,6 +324,10 @@ files:
   $modules/cloud/misc/proxmox_kvm.py:
     maintainers: helldorado
     ignore: skvidal
+  $modules/cloud/misc/proxmox_nic.py:
+    maintainers: Kogelvis
+  $modules/cloud/misc/proxmox_tasks_info:
+    maintainers: paginabianca
   $modules/cloud/misc/proxmox_template.py:
     maintainers: UnderGreen
     ignore: skvidal
@@ -905,6 +909,10 @@ files:
   $modules/remote_management/manageiq/:
     labels: manageiq
     maintainers: $team_manageiq
+  $modules/remote_management/manageiq/manageiq_alert_profiles.py:
+    maintainers: elad661
+  $modules/remote_management/manageiq/manageiq_alerts.py:
+    maintainers: elad661
   $modules/remote_management/manageiq/manageiq_group.py:
     maintainers: evertmulder
   $modules/remote_management/manageiq/manageiq_tenant.py:
diff --git a/plugins/modules/system/sudoers.py b/plugins/modules/system/sudoers.py
index 5a97d6f4b4..43362c876c 100644
--- a/plugins/modules/system/sudoers.py
+++ b/plugins/modules/system/sudoers.py
@@ -17,7 +17,7 @@ version_added: "4.3.0"
 description:
   - This module allows for the manipulation of sudoers files.
 author:
-  - "Jon Ellis (@JonEllis0) <ellis.jp@gmail.com>"
+  - "Jon Ellis (@JonEllis) <ellis.jp@gmail.com>"
 options:
   commands:
     description:
diff --git a/tests/sanity/extra/botmeta.py b/tests/sanity/extra/botmeta.py
index a84bf9328e..b4095cd54a 100755
--- a/tests/sanity/extra/botmeta.py
+++ b/tests/sanity/extra/botmeta.py
@@ -56,7 +56,7 @@ FILENAME = '.github/BOTMETA.yml'
 
 LIST_ENTRIES = frozenset(('supershipit', 'maintainers', 'labels', 'keywords', 'notify', 'ignore'))
 
-AUTHOR_REGEX = re.compile(r'^\w.*\(@([\w-]+)\)(?![\w.])$')
+AUTHOR_REGEX = re.compile(r'^\w.*\(@([\w-]+)\)(?![\w.])')
 
 
 def read_authors(filename):