Skip to content

Commit 9ec0665

Browse files
authored
Create cla.yml
1 parent 6b2d1f2 commit 9ec0665

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/cla.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "CLA Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened,closed,synchronize]
7+
8+
jobs:
9+
CLAssistant:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "CLA Assistant"
13+
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'
14+
# Beta Release
15+
uses: contributor-assistant/[email protected]
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_TOKEN }}
19+
with:
20+
path-to-signatures: 'signatures/version1/cla.json'
21+
path-to-document: 'https://github.com/nyaruka/legal/blob/main/TextIt%20CLA.md'
22+
branch: 'main'
23+
allowlist: bot*
24+
remote-organization-name: 'nyaruka'
25+
remote-repository-name: 'legal'

0 commit comments

Comments
 (0)