Barazo AppView backend
barazo.forum
1name: 'CLA Assistant'
2on:
3 issue_comment:
4 types: [created]
5 pull_request_target:
6 types: [opened, closed, synchronize]
7
8permissions:
9 actions: write
10 contents: write
11 pull-requests: write
12 statuses: write
13
14jobs:
15 cla:
16 runs-on: ubuntu-latest
17 steps:
18 - name: 'CLA Assistant'
19 if: (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 PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_BOT_TOKEN }}
24 with:
25 path-to-signatures: 'signatures/cla.json'
26 path-to-document: 'https://github.com/singi-labs/.github/blob/main/CLA.md'
27 branch: 'main'
28 allowlist: 'gxjansen,dependabot[bot],github-actions[bot]'
29 remote-organization-name: 'singi-labs'
30 remote-repository-name: '.github'
31 lock-pullrequest-aftermerge: false
32 use-dco-flag: false