Skip to content

Commit

Permalink
Update links to cla
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus authored Dec 15, 2024
1 parent 4ce55a6 commit 41035c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/scripts/check-cla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ set -eux

AUTHOR=$GITHUB_ACTOR
echo "Pull request submitted by $AUTHOR";
signed=$(curl -s https://www.lightbend.com/contribute/cla/scala/check/$AUTHOR | jq -r ".signed");
signed=$(curl -s https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR | jq -r ".signed");
if [ "$signed" = "true" ] ; then
echo "CLA check for $AUTHOR successful";
else
echo "CLA check for $AUTHOR failed";
echo "Please sign the Scala CLA to contribute to the Scala compiler.";
echo "Go to https://www.lightbend.com/contribute/cla/scala and then";
echo "Go to https://contribute.akka.io/contribute/cla/scala and then";
echo "comment on the pull request to ask for a new check.";
echo "";
echo "Check if CLA is signed: https://www.lightbend.com/contribute/cla/scala/check/$AUTHOR";
echo "Check if CLA is signed: https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR";
exit 1;
fi;

0 comments on commit 41035c0

Please sign in to comment.