-
Notifications
You must be signed in to change notification settings - Fork 3
Add CLA check #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add CLA check #153
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| name: CLA Check | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| cla-check: | ||
| runs-on: ubuntu-latest | ||
| name: Check CLA Status | ||
|
|
||
| steps: | ||
| - name: Check CLA Status | ||
| id: cla-check | ||
| run: | | ||
| # Get PR author username | ||
| PR_AUTHOR="${{ github.event.pull_request.user.login }}" | ||
| echo "Checking CLA status for user: $PR_AUTHOR" | ||
|
|
||
| # Fetch the CLA list | ||
| CLA_RESPONSE=$(curl -s "https://cla.science.xyz/list") | ||
|
|
||
| # Check if the response is valid JSON and contains the user | ||
| if echo "$CLA_RESPONSE" | jq -e ".submissions[] | select(.github == \"$PR_AUTHOR\")" > /dev/null 2>&1; then | ||
| echo "✅ CLA signed by $PR_AUTHOR" | ||
| echo "cla_signed=true" >> $GITHUB_OUTPUT | ||
| else | ||
| echo "❌ CLA not signed by $PR_AUTHOR" | ||
| echo "cla_signed=false" >> $GITHUB_OUTPUT | ||
| fi | ||
|
|
||
| echo "pr_author=$PR_AUTHOR" >> $GITHUB_OUTPUT | ||
|
|
||
| - name: CLA Check Failed | ||
| if: steps.cla-check.outputs.cla_signed == 'false' | ||
| run: | | ||
| echo "::error title=CLA Required::@${{ steps.cla-check.outputs.pr_author }} needs to sign the Contributor License Agreement (CLA) at https://cla.science.xyz/ before this PR can be merged." | ||
| echo "" | ||
| echo "Once you've signed the CLA, you can re-run this check by:" | ||
| echo "- Pushing a new commit to this PR, or" | ||
| echo "- Closing and reopening this PR" | ||
| echo "" | ||
| echo "❌ CLA not signed by ${{ steps.cla-check.outputs.pr_author }}" | ||
| exit 1 | ||
|
|
||
| - name: CLA Check Passed | ||
| if: steps.cla-check.outputs.cla_signed == 'true' | ||
| run: | | ||
| echo "CLA check passed for ${{ steps.cla-check.outputs.pr_author }}" | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.