feat(snapshot): add workspace snapshots #1530
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, synchronize, reopened] | |
| permissions: | |
| actions: write | |
| contents: read | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla: | |
| name: Check Contributor License Agreement | |
| runs-on: ubuntu-latest | |
| if: > | |
| (github.event_name == 'issue_comment' && | |
| (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' | |
| steps: | |
| - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.DEVSY_GITHUB_APP_ID }} | |
| private-key: ${{ secrets.DEVSY_GITHUB_APP_PRIVATE_KEY }} | |
| owner: ${{ github.repository_owner }} | |
| repositories: ${{ github.event.repository.name }},cla-signatures | |
| - uses: devsy-org/cla-assistant-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 # v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| PERSONAL_ACCESS_TOKEN: ${{ steps.app-token.outputs.token }} | |
| with: | |
| path-to-signatures: "signatures/${{ github.event.repository.name }}/cla.json" | |
| path-to-document: "https://github.com/${{ github.repository }}/blob/main/.github/CLA.md" | |
| branch: "main" | |
| remote-organization-name: "devsy-org" | |
| remote-repository-name: "cla-signatures" | |
| allowlist: "skevetter,renovate[bot],dependabot[bot],*[bot]" | |
| 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. | |
| custom-notsigned-prcomment: > | |
| Thank you for your contribution. Before we can merge it, please read | |
| our [Contributor License Agreement](https://github.com/${{ github.repository }}/blob/main/.github/CLA.md). | |
| If you agree, post a comment on this pull request with exactly the | |
| following text: |