Skip to content

Commit 77e23f0

Browse files
Skip CLA check for GitHub dependabot (#19008)
Skip the CLA check for dependabot. This should fix CI of #19003
1 parent 12ec5f9 commit 77e23f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/scripts/check-cla.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -eux
33

44
echo "Pull request submitted by $AUTHOR";
5-
if [ "$AUTHOR" = "github-actions[bot]" ] ; then
5+
if [[ "$AUTHOR" == "github-actions[bot]" || "$AUTHOR" == "dependabot[bot]" ]] ; then
66
echo "CLA check for $AUTHOR successful";
77
else
88
signed=$(curl -s "https://www.lightbend.com/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");

0 commit comments

Comments
 (0)