12345678910111213141516171819202122232425262728293031323334353637383940 |
- name: CLA Assistant
- on:
- issue_comment:
- types: [created]
- pull_request_target:
- types: [opened,closed,synchronize]
- # explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings
- permissions:
- actions: write
- contents: write # this can be 'read' if the signatures are in remote repository
- pull-requests: write
- statuses: write
- jobs:
- CLA-Assistant:
- runs-on: ubuntu-latest
- steps:
- - name: "CLA Assistant"
- 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'
- uses: contributor-assistant/github-action@v2.4.0
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- PERSONAL_ACCESS_TOKEN: ${{ secrets.BOT_TOKEN }}
- with:
- path-to-signatures: 'signatures/cla.json'
- path-to-document: 'https://github.com/OpenIM-Robot/cla/blob/main/README.md' # e.g. a CLA or a DCO document
- branch: 'main'
- allowlist: 'bot*,*bot,OpenIM-Robot'
- # the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
- remote-organization-name: OpenIM-Robot
- remote-repository-name: cla
- create-file-commit-message: 'Creating file for storing CLA Signatures'
- # signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
- custom-notsigned-prcomment: '💕 Thank you for your contribution and please kindly read and sign our CLA. [CLA Docs](https://github.com/OpenIM-Robot/cla/blob/main/README.md)'
- 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](https://github.com/OpenIM-Robot/cla/blob/main/README.md).<br> The signed information is recorded [**here**](https://github.com/OpenIM-Robot/cla/blob/main/signatures/cla.json)'
- #lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true)
- #use-dco-flag: true - If you are using DCO instead of CLA
|