diff --git a/project/scripts/check-cla.sh b/project/scripts/check-cla.sh index 1a91363f5079..e4e489830f11 100755 --- a/project/scripts/check-cla.sh +++ b/project/scripts/check-cla.sh @@ -2,7 +2,7 @@ set -eux echo "Pull request submitted by $AUTHOR"; -if [ "$AUTHOR" = "github-actions[bot]" ] ; then +if [[ "$AUTHOR" == "github-actions[bot]" || "$AUTHOR" == "dependabot[bot]" ]] ; then echo "CLA check for $AUTHOR successful"; else signed=$(curl -s "https://www.lightbend.com/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");