1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-09 11:29:58 +00:00

Check CLA signatures for new PRs (#8363)

Add a workflow that checks to see if the author of a PR has signed the CLA.
This commit is contained in:
Saq Imtiaz 2024-07-11 11:16:20 +02:00 committed by GitHub
parent 68d13601df
commit 7e2b035803
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

25
.github/workflows/cla-check.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Check CLA Signature
on:
pull_request:
types:
- opened
jobs:
check_cla:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- run: |
if ! curl -s https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/tiddlywiki-com/licenses/cla-individual.md | grep -o "@$USER,"; then
echo "CLA not signed"
gh pr comment "$NUMBER" -b "@$USER It appears that this is your first contribution to the project, welcome.
With apologies for the bureaucracy, please could you prepare a separate PR to the 'tiddlywiki-com' branch with your signature for the Contributor License Agreement (see [contributing.md](https://github.com/Jermolene/TiddlyWiki5/blob/master/contributing.md))."
else
echo "CLA already signed"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.pull_request.number }}
USER: ${{ github.actor }}