Skip to content

Commit

Permalink
Merge pull request #3898 from nickmango/feature/pr-web-flow
Browse files Browse the repository at this point in the history
Feature/Ignore Web flow author
  • Loading branch information
nickmango authored Apr 14, 2023
2 parents ea9d130 + 1ebe05b commit 1c2db6d
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:
if commit.author and commit.login != 'web-flow':
try:
commit_author_summary = UserCommitSummary(
commit.sha,
Expand Down

0 comments on commit 1c2db6d

Please sign in to comment.