Bump expo from 56.0.8 to 57.0.4 #342
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 | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, synchronize, closed] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| env: | |
| CLA_SIGN_COMMENT: "I have read the CLA Document and I hereby sign the CLA" | |
| jobs: | |
| cla: | |
| if: | | |
| (github.event_name == 'pull_request_target' && github.event.action != 'closed') || | |
| (github.event_name == 'issue_comment' && github.event.issue.pull_request && | |
| startsWith(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| path-to-document: "https://github.com/${{ github.repository }}/blob/main/CLA.md" | |
| path-to-signatures: ".cla.json" | |
| branch: "main" | |
| allowlist: "*[bot]" | |
| custom-notsigned-prcomment: | | |
| Thank you for this pull request! Before we can accept your contribution, you need to sign our [Contributor License Agreement](https://github.com/${{ github.repository }}/blob/main/CLA.md). [Read more about why this is necessary.](https://github.com/${{ github.repository }}/blob/main/docs/licensin.md) | |
| To sign, please reply to this comment with: | |
| custom-pr-sign-comment: ${{ env.CLA_SIGN_COMMENT }} |