mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Fix BOTMETA and authors mistakes.
* Fix BOTMETA sanity test regex.
(cherry picked from commit 11205eefee
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
7f0702b786
commit
54ede7dd7f
3 changed files with 12 additions and 4 deletions
12
.github/BOTMETA.yml
vendored
12
.github/BOTMETA.yml
vendored
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue