Switched to a more performant locking library #2900
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CLA Assistant" | |
on: | |
issue_comment: | |
types: [created] | |
pull_request_target: | |
types: [opened,closed,synchronize] | |
jobs: | |
CLAssistant: | |
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/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# the below token should have repo scope and must be manually added by you in the repository's secret | |
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_ACCESS_TOKEN }} | |
with: | |
path-to-signatures: 'CLA/signatures/v1.0/cla.json' | |
path-to-document: 'https://github.com/corgibytes/freshli-cla/blob/main/CLA/CLA-v1.0.md' | |
branch: 'main' | |
allowlist: dependabot[bot],dotnet-updater[bot] | |
remote-organization-name: 'corgibytes' | |
remote-repository-name: 'freshli-cla' | |
create-file-commit-message: 'Adds file for storing CLA Signatures' | |
signed-commit-message: 'Adds CLA signature for $contributorName (PR #$pullRequestNo)' | |
custom-notsigned-prcomment: 'Thank you for your submission to Freshli! Like many open-source projects, we ask that you agree to our [Contributor License Agreement](https://github.com/corgibytes/freshli-cla/blob/main/CLA/CLA-v1.0.md) before we can accept your contribution. You can sign the CLA by posting a comment in this PR matching the text below:' |