Skip to content

Commit 37c6243

Browse files
authored
Merge pull request #44 from feerglas/improvement/exclude-additional-bots
fix: add additional bots to exclude
2 parents ce4147b + b5c0a79 commit 37c6243

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

fame/github_tracker.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,14 @@ def _is_bot(self, github_user_json):
302302
author_type = github_user_json['type']
303303

304304
KNOWN_BOTS = [
305-
'pyup-bot', 'dependabot-bot', 'renovate-bot', 'greenkeeperio-bot']
305+
'pyup-bot',
306+
'dependabot-bot',
307+
'renovate-bot',
308+
'greenkeeperio-bot',
309+
'semantic-release-bot',
310+
'lyne-admin',
311+
'snyk-bot'
312+
]
306313
return author_type == 'Bot' or author in KNOWN_BOTS
307314

308315
def _format_date(self, date):

0 commit comments

Comments
 (0)