mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			546 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			546 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Combine Bot PRs
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
| 
 | |
| # The minimum permissions required to run this Action
 | |
| permissions:
 | |
|   contents: write
 | |
|   pull-requests: write
 | |
|   checks: read
 | |
| 
 | |
| jobs:
 | |
|   combine-wrapperbot-prs:
 | |
|     if: github.repository == 'gradle/actions'
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: combine-wrapperbot-prs
 | |
|         uses: github/combine-prs@v5.2.0
 | |
|         with:
 | |
|           branch_prefix: wrapperbot
 | |
|           pr_title: 'Bump Gradle Wrappers'
 | |
|           ci_required: "false"
 | |
|           github_token: ${{ secrets.BOT_GITHUB_TOKEN }}
 | 
