mirror of
https://github.com/sbt/sbt.git
synced 2026-09-03 16:39:24 +02:00
Merge branch '1.10.x' into wip/merge-1.10.x
This commit is contained in:
@@ -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,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 }}
|
||||
|
||||
Reference in New Issue
Block a user