Skip to content

Commit aa07fa3

Browse files
authored
Merge pull request #3 from pimcore/cla_check
Added reusable cla check
2 parents f28641d + 57ee16f commit aa07fa3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "CLA Check Workflow"
2+
3+
on:
4+
workflow_call:
5+
secrets:
6+
CLA_ACTION_ACCESS_TOKEN:
7+
required: true
8+
9+
jobs:
10+
CLAAssistant:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: "CLA Assistant"
14+
uses: contributor-assistant/github-action@v2.3.2
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACTION_ACCESS_TOKEN }}
18+
with:
19+
path-to-signatures: "signatures/version1/cla.json"
20+
path-to-document: "https://github.com/pimcore/pimcore/blob/master/CLA.md"
21+
branch: "main"
22+
allowlist: user1,bot*
23+
remote-organization-name: "pimcore"
24+
remote-repository-name: "cla"

0 commit comments

Comments
 (0)