mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	* Rename e2e-test.yml to e2e-test.bak * Rename create-branch-on-tag.yml to create-branch-on-tag.bak * Rename pull-request.yml to pull-request.bak
		
			
				
	
	
		
			131 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Copyright © 2023 OpenIM. 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: Github Pull Request
 | |
| on:
 | |
|   workflow_dispatch:
 | |
|   schedule:
 | |
|     - cron: '0 2 * * *'
 | |
| 
 | |
| permissions:
 | |
|   contents: write
 | |
|   pull-requests: write
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: checkout
 | |
|         uses: actions/checkout@v4
 | |
|         with:
 | |
|           fetch-depth: 0
 | |
| 
 | |
|       - uses: actions/setup-node@v4
 | |
|       - name: Setup Go
 | |
|         uses: actions/setup-go@v5
 | |
|       - name: Run go modules tidy
 | |
|         run: |
 | |
|           sudo apt-get install jq
 | |
|           sudo make tidy
 | |
|           sudo make tools.verify.go-gitlint
 | |
|           echo "Run go modules tidy successfully" 
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Run go format and lint
 | |
|         run: |
 | |
|           sudo make format
 | |
|           echo "Run go format successfully" 
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Run go lint
 | |
|         run: |
 | |
|           sudo make lint
 | |
|           echo "Run go lint successfully" 
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Generate all necessary files, such as error code files
 | |
|         run: |
 | |
|           make gen.docgo.doc
 | |
|           make gen
 | |
|           echo "Generate all necessary files successfully"
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: make init
 | |
|         run: |
 | |
|           export OPENIM_IP=127.0.0.1
 | |
|           export LOG_STORAGE_LOCATION="../logs/"
 | |
|           ./scripts/init-config.sh --examples --force
 | |
|           echo "Generate all necessary files successfully"
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Generate Versions Including Pre-release Identifiers
 | |
|         run: |
 | |
|           latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
 | |
|           echo $latest_tag > pkg/common/config/version
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Gen CHANGELOG file
 | |
|         run: |
 | |
|           current_tag=$(git describe --tags --abbrev=0)
 | |
|           version=$(echo "$current_tag" | sed -E 's/^v?([0-9]+)\.([0-9]+)\..*$/\1.\2/')
 | |
|           echo "OpenIM Version: $version"
 | |
|           make tools.install.git-chglog
 | |
|           cd CHANGELOG
 | |
|           git-chglog --tag-filter-pattern "v${version}.*" -o CHANGELOG-${version}.md
 | |
|           cd ..
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Run unit test and get test coverage
 | |
|         run: |
 | |
|           make cover
 | |
|           echo "Run unit test and get test coverage successfully" 
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: OpenIM verify copyright
 | |
|         run: |
 | |
|           sudo make add-copyright
 | |
|           echo "OpenIM verify successfully" 
 | |
|         continue-on-error: true
 | |
| 
 | |
|       - name: Create Pull Request
 | |
|         uses: peter-evans/create-pull-request@v6
 | |
|         with:
 | |
|           token: ${{ secrets.BOT_GITHUB_TOKEN }}
 | |
|           commit-message: "cicd: bump League Patch"
 | |
|           author: kubbot <3293172751ysy@gmail.com>
 | |
|           committer: kubbot <3293172751ysy@gmail.com>
 | |
|         #   signoff: false
 | |
|         #   draft: false
 | |
|           branch: "asf-auto-updates"
 | |
|           assignees: cubxxw
 | |
|           reviewers: cubxxw
 | |
|           title: "[Auto PR 🤖] Bump League Patch auto PR"
 | |
|           body: |
 | |
|             I am a PR generated by robot automation.
 | |
| 
 | |
|             Review criteria:
 | |
| 
 | |
|             - [ ] Disenchanter can connect and issue actions
 | |
| 
 | |
|             Github Actions Status:
 | |
| 
 | |
|             [](https://github.com/openimsdk/open-im-server/actions/workflows/pull-request.yml)
 | |
|             
 | |
|             This is an automated PR. 
 | |
|             <sub>[workflow](https://github.com/openimsdk/open-im-server/blob/main/.github/workflows/pull-request.yml).</sub>
 | |
|           labels: |
 | |
|             kind/documentation
 | |
|             enhancement
 | |
|             report
 |