Skip to content

Commit d48cf54

Browse files
authored
Merge pull request #113 from scratchfoundation/agpl-and-cla
AGPL and CLA
2 parents 665f05d + 19285ba commit d48cf54

File tree

4 files changed

+689
-9
lines changed

4 files changed

+689
-9
lines changed
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Signature Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened,closed,synchronize]
7+
8+
permissions:
9+
actions: write
10+
contents: read
11+
pull-requests: write
12+
statuses: write
13+
14+
jobs:
15+
CLA-Assistant:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: "CLA Assistant"
19+
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'
20+
uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 # v2.6.1
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
# the below token should have repo scope and must be manually added by you in the repository's secrets
24+
PERSONAL_ACCESS_TOKEN: ${{ secrets.GHA_AGREEMENTS_PAT }}
25+
with:
26+
remote-organization-name: 'scratchfoundation'
27+
remote-repository-name: 'scratch-agreements'
28+
path-to-signatures: 'signatures/version1/cla.json'
29+
path-to-document: 'https://github.com/scratchfoundation/scratch-agreements/blob/main/CLA.md'
30+
branch: 'main'
31+
allowlist: semantic-release-bot,*[bot]

0 commit comments

Comments
 (0)