github.com/klaytn/klaytn@v1.12.1/.github/worflows/CLA.yml (about)

     1  name: "CLA Assistant"
     2  on:
     3    issue_comment:
     4      types: [created]
     5    pull_request_target:
     6      types: [opened, closed, synchronize]
     7  
     8  jobs:
     9    CLAssistant:
    10      runs-on: ubuntu-latest
    11      steps:
    12        - name: "CLA Assistant"
    13          if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
    14          uses: cla-assistant/github-action@v2.1.3-beta
    15          env:
    16            GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    17            PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PERSONAL_ACCESS_TOKEN }}
    18          with:
    19            path-to-signatures: "${{ github.event.repository.name }}/signatures/version1/cla.json"
    20            path-to-document: "https://gist.github.com/e78f99e1c527225637e269cff1bc7e49" # Klaytn Gist
    21            branch: "master"
    22            allowlist: dependabot[bot], KlaytnDev, circleci-klaytn
    23            remote-repository-name: ${{ secrets.CLA_REPOSITORY }}