From 3b95c3833770af723986cb97dcfaa43ac6961390 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 22 May 2022 19:09:05 -0400 Subject: [PATCH] Add an exception for commits from dependabot. --- contrib/utilities/indent_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/utilities/indent_common.sh b/contrib/utilities/indent_common.sh index 9bd1b0bccc..cca63659d3 100644 --- a/contrib/utilities/indent_common.sh +++ b/contrib/utilities/indent_common.sh @@ -83,7 +83,7 @@ checks() { # first user names: git log --since "2019-01-01" --format="%aN" --no-merges | sort -u | while read name ; do words=($name) - if [ "${#words[@]}" -lt "2" ]; then + if [ "${#words[@]}" -lt "2" -a "$name" != "dependabot[bot]" ]; then echo "invalid author '$name' without firstname and lastname" echo "" echo "hint: for possible solutions, consult the webpage:" -- 2.39.5