mirror of
				https://github.com/cmderdev/cmder.git
				synced 2025-10-31 09:22:15 +08:00 
			
		
		
		
	add vendor dependency check action
This commit is contained in:
		
							
								
								
									
										39
									
								
								.github/workflows/vendor.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								.github/workflows/vendor.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| name: Update Vendor | ||||
|  | ||||
| on: | ||||
|   schedule: | ||||
|   # At 13:37 UTC every day. | ||||
|   - cron: '37 13 * * *' | ||||
|    | ||||
| defaults: | ||||
|   run: | ||||
|     shell: pwsh | ||||
|      | ||||
| permissions: | ||||
|   contents: read | ||||
|  | ||||
| jobs: | ||||
|   vendor: | ||||
|  | ||||
|     runs-on: windows-latest | ||||
|     continue-on-error: false | ||||
|     timeout-minutes: 15 | ||||
|     permissions: | ||||
|       contents: write | ||||
|       pull-requests: write | ||||
|  | ||||
|     steps: | ||||
|     - uses: actions/checkout@v3 | ||||
|       with: | ||||
|         fetch-depth: 0 | ||||
|          | ||||
|     - run: | | ||||
|           # TODO | ||||
|  | ||||
|     - uses: peter-evans/create-pull-request@v4 | ||||
|       with: | ||||
|         title: 'Actions: Updates to the vendored dependencies' | ||||
|         body: 'Automatic changes' | ||||
|         commit-message: 'Update vendored dependencies' | ||||
|         branch: update-vendor | ||||
|         base: master | ||||
		Reference in New Issue
	
	Block a user