mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			621 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			621 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: PR Checks
 | |
| on:
 | |
|   pull_request_target:
 | |
|     types:
 | |
|       - opened
 | |
|       - synchronize
 | |
|   issues:
 | |
|     types:
 | |
|       - milestoned
 | |
|       - demilestoned
 | |
| 
 | |
| jobs:
 | |
|   main:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout Actions
 | |
|         uses: actions/checkout@v2
 | |
|         with:
 | |
|           repository: "grafana/grafana-github-actions"
 | |
|           path: ./actions
 | |
|           ref: main
 | |
|       - name: Install Actions
 | |
|         run: npm install --production --prefix ./actions
 | |
|       - name: Run PR Checks
 | |
|         uses: ./actions/pr-checks
 | |
|         with:
 | |
|           token: ${{secrets.GITHUB_TOKEN}}
 | |
|           configPath: pr-checks
 |