feat(profiles): one server per purpose, with a Server panel you can read (SPEC-50) #1024
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] | |
| # Explicitly configure the least privilege the action needs. | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla-assistant: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "CLA Assistant" | |
| if: (github.event.comment.body == 'recreate-cla' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | |
| uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Where signatures are stored (committed to the branch below). | |
| path-to-signatures: "signatures/version1/cla.json" | |
| path-to-document: "https://github.com/leduckhc/makit/blob/main/CLA.md" | |
| branch: "main" | |
| # Bots don't need to sign. The solo repo owner is exempt too — the | |
| # project owner needn't sign their own CLA, and it avoids the action | |
| # trying to commit a signature file to the protected `main` branch. | |
| # `cursoragent` is the Cursor Cloud Agent committer identity. | |
| allowlist: leduckhc,cursoragent,dependabot[bot],github-actions[bot],*bot | |
| # Text shown to contributors. | |
| custom-notsigned-prcomment: "Thank you for your contribution! Before we can merge it, please read our [Contributor License Agreement](https://github.com/leduckhc/makit/blob/main/CLA.md) and sign it by posting the comment below." | |
| 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. ✅" |