We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7094051 commit 14cd2b9Copy full SHA for 14cd2b9
scripts/lint/dco_check.py
@@ -1071,10 +1071,10 @@ def process_commits(
1071
if not is_valid_email(email):
1072
infractions[commit.hash].append(f'invalid email: {email}')
1073
else:
1074
- sign_offs_name_email.append((name, email))
+ sign_offs_name_email.append((name, email.lower()))
1075
1076
# Check that author is in the sign-offs
1077
- if not (commit.author_name, commit.author_email) in sign_offs_name_email:
+ if not (commit.author_name, commit.author_email.lower()) in sign_offs_name_email:
1078
infractions[commit.hash].append(
1079
'sign-off not found for commit author: '
1080
f'{commit.author_name} {commit.author_email}; found: {sign_offs}'
0 commit comments