We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f28641d + 57ee16f commit aa07fa3Copy full SHA for aa07fa3
.github/workflows/reusable-cla-check.yaml
@@ -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