Skip to content

Commit

Permalink
Merge pull request #3902 from nickmango/bug/revert-web-flow
Browse files Browse the repository at this point in the history
Revert "Feature/Ignore Web flow author"
  • Loading branch information
nickmango authored Apr 17, 2023
2 parents 1c2db6d + 160baa8 commit 5976327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cla-backend/cla/models/github_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ def get_pull_request_commit_authors(pull_request) -> List[UserCommitSummary]:
cla.log.debug(f'{fn} - Processing commit while looking for authors, commit: {commit.sha}')
# Note: we can get the author info in two different ways:
# https://pygithub.readthedocs.io/en/latest/github_objects/NamedUser.html
if commit.author and commit.login != 'web-flow':
if commit.author:
try:
commit_author_summary = UserCommitSummary(
commit.sha,
Expand Down

0 comments on commit 5976327

Please sign in to comment.