Browse Source

refine how we ping

list_maintainers
Zach White 2 years ago
parent
commit
771c47ab99
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      CODEOWNERS
  2. +1
    -1
      lib/python/qmk/cli/ping/maintainers.py

+ 1
- 1
CODEOWNERS View File

@ -1,2 +1,2 @@
* @qmk/collaborators
/lib/python/* @skullydazed @erovia
/lib/python/* @qmk/python

+ 1
- 1
lib/python/qmk/cli/ping/maintainers.py View File

@ -16,7 +16,7 @@ def ping_maintainers(cli):
for file in cli.args.files:
for maintainer in maintainers(file):
if maintainer != 'qmk/collaborators':
if not maintainer.startswith('@qmk/'):
github_maintainers.add(maintainer)
if github_maintainers:


Loading…
Cancel
Save