mirror of
				https://github.com/ScoopInstaller/Main.git
				synced 2025-11-04 07:41:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			450 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			450 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
on:
 | 
						|
  issues:
 | 
						|
    types: [ opened, labeled ]
 | 
						|
name: Issues
 | 
						|
jobs:
 | 
						|
  issueHandler:
 | 
						|
    name: IssueHandler
 | 
						|
    runs-on: windows-latest
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@main
 | 
						|
    - name: IssueHandler
 | 
						|
      uses: ScoopInstaller/Scoop-GithubActions@main
 | 
						|
      if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify'))
 | 
						|
      env:
 | 
						|
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 |