mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 01:50:01 +08:00 
			
		
		
		
	 3c3fdfcc0c
			
		
	
	
		3c3fdfcc0c
		
			
		
	
	
	
	
		
			
			The `.github/workflows` directory has additional permissions attached, preventing these files from being by the Upgrade Gradle Wrapper plugin.
		
			
				
	
	
		
			35 lines
		
	
	
		
			805 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			805 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Execute failure cases
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
| 
 | |
| env:
 | |
|   GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
 | |
| 
 | |
| jobs:
 | |
| 
 | |
|   wrapper-missing:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test wrapper missing
 | |
|       uses: ./
 | |
|       continue-on-error: true
 | |
|       with:
 | |
|         build-root-directory: .github/workflow-samples/no-wrapper
 | |
|         arguments: help
 | |
| 
 | |
|   bad-configuration:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test bad config value
 | |
|       uses: ./
 | |
|       continue-on-error: true
 | |
|       with:
 | |
|         build-root-directory: .github/workflow-samples/no-wrapper
 | |
|         arguments: help
 | |
|         cache-disabled: yes
 |