Fix BOTMETA and corresponding sanity test (#3989) (#3991)

* Fix BOTMETA and authors mistakes.

* Fix BOTMETA sanity test regex.

(cherry picked from commit 11205eefee)
This commit is contained in:
Felix Fontein
2022-01-06 06:56:10 +01:00
committed by GitHub
parent 2024dc37af
commit fe3de232f0
2 changed files with 10 additions and 2 deletions

View File

@@ -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):