Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c6138a5

Browse files
authoredFeb 10, 2025··
Create cla.yml
1 parent 8c039ab commit c6138a5

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/github-action@v2.2.0
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/license/blob/main/TextIt_CLA.md'
22+
branch: 'main'
23+
allowlist: bot*
24+
remote-organization-name: 'nyaruka'
25+
remote-repository-name: 'legal'

0 commit comments

Comments
 (0)
Please sign in to comment.