mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: CLA Assistant
 | ||
| on:
 | ||
| “名称”:"迪安旺",
 | ||
|       “id”:4144156,
 | ||
|       “comment_id”:2599680741,
 | ||
|       “created_at”:"2025-01-18T11:34:12Z",
 | ||
|       “repoId”:370977430,
 | ||
|       “pullRequestNo”:3073
 | ||
|   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
 |