Skip to content

Commit 4e8c40f

Browse files
authored
Merge pull request #283 from tgodzik/fix-cla
bugfix: Fix Scala CLA
2 parents a88f1ae + 9d7ed62 commit 4e8c40f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

project/scripts/check-cla.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ set -eux
33

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

0 commit comments

Comments
 (0)