We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fdbb94f + e11e15a commit 662060dCopy full SHA for 662060d
.github/workflows/cla.yml
@@ -6,3 +6,5 @@ jobs:
6
steps:
7
- uses: actions/checkout@v2
8
- run: ./project/scripts/check-cla.sh
9
+ env:
10
+ AUTHOR: ${{ github.event.pull_request.user.login }}
project/scripts/check-cla.sh
@@ -1,7 +1,6 @@
1
#!/usr/bin/env bash
2
set -eux
3
4
-AUTHOR=$GITHUB_ACTOR
5
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
0 commit comments