From fe3de232f084d176f4822c999962e2db3a009b03 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Thu, 6 Jan 2022 06:56:10 +0100 Subject: [PATCH] Fix BOTMETA and corresponding sanity test (#3989) (#3991) * Fix BOTMETA and authors mistakes. * Fix BOTMETA sanity test regex. (cherry picked from commit 11205eefee7b10bd2f74619810896424584e3b77) --- .github/BOTMETA.yml | 10 +++++++++- tests/sanity/extra/botmeta.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/BOTMETA.yml b/.github/BOTMETA.yml index 7038c930bf..64f34f2e82 100644 --- a/.github/BOTMETA.yml +++ b/.github/BOTMETA.yml @@ -164,7 +164,7 @@ files: $inventories/proxmox.py: maintainers: $team_virt ilijamt $inventories/icinga2.py: - maintainers: bongoeadgc6 + maintainers: BongoEADGC6 $inventories/scaleway.py: maintainers: $team_scaleway labels: cloud scaleway @@ -320,6 +320,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 @@ -914,6 +918,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/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):