mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			565 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			565 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: validate-external
 | 
						|
on:
 | 
						|
  pull_request_target:
 | 
						|
    types: [opened, synchronize]
 | 
						|
jobs:
 | 
						|
  authorize:
 | 
						|
    if: github.repository != github.event.pull_request.head.repo.full_name
 | 
						|
    environment:
 | 
						|
      ${{ github.event_name == 'pull_request_target' &&
 | 
						|
      github.event.pull_request.head.repo.full_name != github.repository &&
 | 
						|
      'external' || 'internal' }}
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - run: echo ✓
 | 
						|
  build:
 | 
						|
    needs: authorize
 | 
						|
    uses: ./.github/workflows/validate.yml
 | 
						|
    secrets:
 | 
						|
      ZRE_REPO_WITH_PAT: ${{ secrets.ZRE_REPO_WITH_PAT }}
 |