mirror of
https://github.com/sbt/sbt.git
synced 2026-09-06 09:37:02 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
25 lines
919 B
YAML
25 lines
919 B
YAML
name: Scala CLA
|
|
on: [pull_request]
|
|
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://www.lightbend.com/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 "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";
|
|
exit 1;
|
|
fi;
|