From df173e45947f609c94af7691837a5bbf6719dff9 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Mon, 20 Nov 2023 17:03:07 +0100 Subject: [PATCH] Skip CLA check for dependabot --- project/scripts/check-cla.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");