go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/.github/workflows/cla.yaml (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 Mondoo CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
    14          uses: contributor-assistant/github-action@v2.3.1
    15          env:
    16            GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    17            PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_ACCESS_TOKEN }}
    18          with:
    19            path-to-signatures: 'signatures/version1/cla.json'
    20            path-to-document: 'https://github.com/mondoohq/.github/blob/master/CLA.md'
    21            custom-pr-sign-comment: 'I have read the Mondoo CLA Document and I hereby sign the CLA'
    22            custom-notsigned-prcomment: 'Thank you for your submission, we really appreciate it. Before we can accept your contribution, we ask that you sign the [Mondoo Contributor License Agreement](https://github.com/mondoohq/.github/blob/master/CLA.md). You can sign the CLA by adding a new comment to this pull request and pasting exactly the following text.'
    23            remote-repository-name: cla
    24            remote-organization-name: mondoohq
    25            branch: 'main'
    26            allowlist: mondoo-tools,github-actions[bot],dependabot[bot]