You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
821 B
24 lines
821 B
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
|
|
steps:
|
|
- name: "CLA Signature Bot"
|
|
uses: MetaMask/cla-signature-bot@v3.0.1
|
|
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'
|
|
allow-organization-members: true
|
|
blockchain-storage-flag: false
|
|
|