mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Copyright © 2023 OpenIM open source community. All rights reserved.
 | 
						|
#
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
 | 
						|
name: OpenIM 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
 | 
						|
  pull-requests: write
 | 
						|
  statuses: write
 | 
						|
 | 
						|
env:
 | 
						|
  # Define Open-IM-Server variables here
 | 
						|
  OPEN_IM_SERVER_REMOTE_ORGANIZATION: openim-sigs
 | 
						|
  REMOTE_REPOSITORY: cla
 | 
						|
  OPEN_IM_SERVER_CLA_DOCUMENT: https://github.com/openim-sigs/cla/blob/main/README.md
 | 
						|
  OPEN_IM_SERVER_SIGNATURES_PATH: signatures/${{ github.event.repository.name }}/cla.json
 | 
						|
 | 
						|
  OPEN_IM_SERVER_ALLOWLIST: kubbot,openimbot,bot*,dependabot,sweep-ai,*bot,bot-*,bot/*,bot-/*,bot,*[bot]
 | 
						|
 | 
						|
jobs:
 | 
						|
  CLAAssistant:
 | 
						|
    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.3.1
 | 
						|
        env:
 | 
						|
          GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
 | 
						|
          PERSONAL_ACCESS_TOKEN: ${{ secrets.REDBOT_GITHUB_TOKEN }}
 | 
						|
        with:
 | 
						|
          path-to-signatures: ${{ env.OPEN_IM_SERVER_SIGNATURES_PATH }}
 | 
						|
          path-to-document: ${{ env.OPEN_IM_SERVER_CLA_DOCUMENT }}
 | 
						|
          branch: 'main'
 | 
						|
          allowlist: ${{ env.OPEN_IM_SERVER_ALLOWLIST }}
 | 
						|
 | 
						|
          remote-organization-name: ${{ env.OPEN_IM_SERVER_REMOTE_ORGANIZATION }}
 | 
						|
          remote-repository-name: ${{ env.REMOTE_REPOSITORY }}
 | 
						|
 | 
						|
          create-file-commit-message: '📚 Docs: Creating file for storing ${{ github.event.repository.name }} CLA Signatures'
 | 
						|
          custom-notsigned-prcomment: '💕 Thank you for your contribution and please kindly read and sign our [🎯https://github.com/openim-sigs/cla/blob/main/README.md](https://github.com/openim-sigs/cla/blob/main/README.md). <br> If you wish to sign the CRA, **Please copy and comment on the following sentence:**'
 | 
						|
          custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA'
 | 
						|
          custom-allsigned-prcomment: '🤖 All Contributors have signed the [${{ github.event.repository.name }} CLA](https://github.com/openim-sigs/cla/blob/main/README.md).<br> The signed information is recorded [🤖here](https://github.com/openim-sigs/cla/tree/main/signatures/${{ github.event.repository.name }}/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
 |