mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 18:10:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			448 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			448 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Test dependency-submission submit
 | |
| 
 | |
| on:
 | |
|   workflow_run:
 | |
|     workflows: ['Test dependency-submission save']
 | |
|     types: [completed]
 | |
| 
 | |
| permissions:
 | |
|   contents: write
 | |
| 
 | |
| jobs:
 | |
|   dependency-submission-submit:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v4
 | |
|     - name: Download and submit dependency graph
 | |
|       uses: ./dependency-submission
 | |
|       with:
 | |
|         dependency-graph: download-and-submit
 | 
