Merge branch '1.10.x' into wip/merge-1.10.x

This commit is contained in:
Eugene Yokota
2025-02-10 02:43:30 -05:00
40 changed files with 532 additions and 182 deletions
+4 -4
View File
@@ -32,10 +32,10 @@ jobs:
java: 21
distribution: temurin
jobtype: 5
- os: ubuntu-latest
java: 8
distribution: zulu
jobtype: 6
# - os: ubuntu-latest
# java: 8
# distribution: zulu
# jobtype: 6
- os: ubuntu-latest
java: 8
distribution: zulu
+4 -18
View File
@@ -4,21 +4,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check CLA
env:
AUTHOR: ${{ github.event.pull_request.user.login }}
run: |
echo "Pull request submitted by $AUTHOR";
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://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://contribute.akka.io/contribute/cla/scala/check/$AUTHOR";
exit 1;
fi;
- name: Check CLA
uses: scala/cla-checker@v1
with:
author: ${{ github.event.pull_request.user.login }}