Skip to content

Commit

Permalink
Skip CLA check for dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Nov 20, 2023
1 parent 36e543d commit df173e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/scripts/check-cla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit df173e4

Please sign in to comment.