mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 00:12:18 +08:00 
			
		
		
		
	* feat: add test format Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * fix: fix github auto gh pr Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add build Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * build: add build copyright admin Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * docs: design documentation and deployment devops flow Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add docker file and version appoint Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> feat: add go release Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: set pull request Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: set pull request Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: set pull request Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: set pull request Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.0 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: 'Lock Threads'
 | |
| 
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: '0 * * * *'
 | |
|   workflow_dispatch:
 | |
| 
 | |
| permissions:
 | |
|   issues: write
 | |
|   pull-requests: write
 | |
| 
 | |
| concurrency:
 | |
|   group: lock
 | |
| 
 | |
| jobs:
 | |
|   action:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: dessant/lock-threads@v4
 | |
|         with:
 | |
|           github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
 | |
|           issue-inactive-days: '365'
 | |
|           exclude-issue-created-before: ''
 | |
|           exclude-issue-created-after: ''
 | |
|           exclude-issue-created-between: ''
 | |
|           exclude-issue-closed-before: ''
 | |
|           exclude-issue-closed-after: ''
 | |
|           exclude-issue-closed-between: ''
 | |
|           include-any-issue-labels: ''
 | |
|           include-all-issue-labels: ''
 | |
|           exclude-any-issue-labels: ''
 | |
|           add-issue-labels: ''
 | |
|           remove-issue-labels: ''
 | |
|           issue-comment: ''
 | |
|           issue-lock-reason: 'resolved'
 | |
|           pr-inactive-days: '365'
 | |
|           exclude-pr-created-before: ''
 | |
|           exclude-pr-created-after: ''
 | |
|           exclude-pr-created-between: ''
 | |
|           exclude-pr-closed-before: ''
 | |
|           exclude-pr-closed-after: ''
 | |
|           exclude-pr-closed-between: ''
 | |
|           include-any-pr-labels: ''
 | |
|           include-all-pr-labels: ''
 | |
|           exclude-any-pr-labels: ''
 | |
|           add-pr-labels: ''
 | |
|           remove-pr-labels: ''
 | |
|           pr-comment: ''
 | |
|           pr-lock-reason: 'resolved'
 | |
|           process-only: ''
 | |
|           log-output: false |