PokeClaw issues on Samsung Galaxy Tab A9 #209
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-check: | |
| if: github.event_name != 'issue_comment' || github.event.issue.pull_request | |
| 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: signatures/cla.json | |
| path-to-document: https://github.com/agents-io/PokeClaw/blob/main/CLA.md | |
| branch: main | |
| allowlist: bot* | |
| custom-notsigned-prcomment: | | |
| Thank you for your contribution to PokeClaw! | |
| Before we can merge this PR, please sign our [Contributor License Agreement](https://github.com/agents-io/PokeClaw/blob/main/CLA.md). | |
| To sign, add a comment on this PR with exactly: | |
| > I have read the CLA and I agree | |
| custom-pr-sign-comment: | | |
| :white_check_mark: Thank you for signing the CLA! Your contribution is now ready for review. |