build(deps): Bump docker/setup-qemu-action from 3 to 4 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CLA Assistant | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, closed, synchronize] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla: | |
| if: | | |
| (github.event_name == 'pull_request_target' && | |
| github.event.action != 'closed' && | |
| github.event.pull_request.head.repo.full_name != github.repository) || | |
| (github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: CLA Assistant | |
| uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_TOKEN }} | |
| with: | |
| path-to-signatures: '.github/CLA/signatures.json' | |
| path-to-document: 'https://github.com/${{ github.repository }}/blob/main/.github/CLA/individual-cla.md' | |
| branch: main | |
| allowlist: 'dependabot[bot],renovate[bot],github-actions[bot]' | |
| custom-notsigned-prcomment: | | |
| Thank you for your pull request! Before we can merge it, we need you to sign our | |
| [Contributor License Agreement](${{ github.server_url }}/${{ github.repository }}/blob/main/.github/CLA/individual-cla.md). | |
| **To sign**, please comment on this PR with the exact text: | |
| > I have read the CLA Document and I hereby sign the CLA | |
| If your employer requires a Corporate CLA, please see our | |
| [Corporate CLA](${{ github.server_url }}/${{ github.repository }}/blob/main/.github/CLA/corporate-cla.md) | |
| and contact johnson@signetstack.io. | |
| custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA' | |
| custom-allsigned-prcomment: 'All contributors have signed the CLA.' |