mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	* refactor: refactor workflows contents. * add tool workflows. * update field. * fix: remove chat error. * Fix err. * fix error. * remove cn comment. * update workflows files. * update infra config. * move workflows. * feat: update bot. * fix: solve uncorrect outdated msg get. * update get docIDs logic. * update * update skip logic. * fix * update. * fix: update contribute cla. * fix: solve conversations bug.
		
			
				
	
	
		
			41 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
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
 |