Skip to content

Commit

Permalink
Follow redirects when checkting CLA
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur authored Dec 5, 2024
1 parent cb73df2 commit 191535b
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 @@ -5,7 +5,7 @@ echo "Pull request submitted by $AUTHOR";
if [[ "$AUTHOR" == "github-actions[bot]" || "$AUTHOR" == "dependabot[bot]" ]] ; then
echo "CLA check for $AUTHOR successful";
else
signed=$(curl -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
signed=$(curl -L -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
if [ "$signed" = "true" ] ; then
echo "CLA check for $AUTHOR successful";
else
Expand Down

0 comments on commit 191535b

Please sign in to comment.