Skip to content

Commit c05ec0b

Browse files
authored
Merge pull request #5083 from sjrd/update-cla-check-for-akka
Update the CLA check after the rename of Lightbend to Akka.
2 parents 030eff0 + a235da7 commit c05ec0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/check-cla.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ set -eux
44
AUTHOR="$1"
55
echo "Pull request submitted by $AUTHOR";
66
URL_AUTHOR=$(jq -rn --arg x "$AUTHOR" '$x|@uri')
7-
signed=$(curl -s "https://www.lightbend.com/contribute/cla/scala/check/$URL_AUTHOR" | jq -r ".signed");
7+
signed=$(curl -s "https://contribute.akka.io/contribute/cla/scala/check/$URL_AUTHOR" | jq -r ".signed");
88
if [ "$signed" = "true" ] ; then
99
echo "CLA check for $AUTHOR successful";
1010
else
1111
echo "CLA check for $AUTHOR failed";
1212
echo "Please sign the Scala CLA to contribute to Scala.js.";
13-
echo "Go to https://www.lightbend.com/contribute/cla/scala and then";
13+
echo "Go to https://contribute.akka.io/contribute/cla/scala and then";
1414
echo "comment on the pull request to ask for a new check.";
1515
exit 1;
1616
fi;

0 commit comments

Comments
 (0)