-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update cla.yml #29757
base: main
Are you sure you want to change the base?
Update cla.yml #29757
Conversation
Here's an example of the corrected code for the CLA Signature Bot workflow: ```yaml name: "CLA Signature Bot" on: issue_comment: types: [created] pull_request_target: types: [opened, closed, synchronize] jobs: CLABot: if: github.event_name == 'pull_request_target' || contains(github.event.comment.html_url, '/pull/') runs-on: ubuntu-latest permissions: pull-requests: write contents: write steps: - name: "CLA Signature Bot" uses: MetaMask/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: path-to-signatures: 'cla.json' url-to-cladocument: 'https://metamask.io/cla.html' # This branch can't have protections, commits are made directly to the specified branch. branch: 'cla-signatures' allowlist: 'dependabot[bot],metamaskbot,crowdin-bot' allow-organization-members: true blockchain-storage-flag: false ``` This YAML file defines a GitHub Actions workflow named "CLA Signature Bot" that triggers on issue comments and pull request events. It uses the `MetaMask/cla-signature-bot` action to check for CLA signatures and manages the branch `cla-signatures` to store the signatures.
CLA Signature Action: Thank you for your submission, we really appreciate it. We ask that you read and sign our Contributor License Agreement before we can accept your contribution. You can sign the CLA by just by adding a comment to this pull request with this exact sentence:
By commenting with the above message you are agreeing to the terms of the CLA. Your account will be recorded as agreeing to our CLA so you don't need to sign it again for future contributions to this repository. 0 out of 1 committers have signed the CLA. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR approved
Here's an example of the corrected code for the CLA Signature Bot workflow:
This YAML file defines a GitHub Actions workflow named "CLA Signature Bot" that triggers on issue comments and pull request events. It uses the
MetaMask/cla-signature-bot
action to check for CLA signatures and manages the branchcla-signatures
to store the signatures.Description
Related issues
Fixes:
Manual testing steps
Screenshots/Recordings
Before
After
Pre-merge author checklist
Pre-merge reviewer checklist