Skip to content

Commit 846e8b5

Browse files
committed
Add CLA bot
1 parent e691b5f commit 846e8b5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/cla.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Check CLA
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_target:
7+
types: [opened, closed, synchronize]
8+
9+
jobs:
10+
cla:
11+
name: Check CLA
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: CLA Assistant
15+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
16+
uses: secondlife-3p/contributor-assistant@v2
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
PERSONAL_ACCESS_TOKEN: ${{ secrets.SHARED_CLA_TOKEN }}
20+
with:
21+
branch: main
22+
path-to-document: https://github.com/secondlife/cla/blob/master/CLA.md
23+
path-to-signatures: signatures.json
24+
remote-organization-name: secondlife
25+
remote-repository-name: cla-signatures

0 commit comments

Comments
 (0)