Skip to content

Commit ee69016

Browse files
authored
Merge pull request #45 from sourcerer-io/develop
Extra bots
2 parents c6a7c7b + 37c6243 commit ee69016

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)