mirror of
				https://github.com/ludeeus/action-shellcheck.git
				synced 2025-11-04 03:48:35 +01:00 
			
		
		
		
	Merge pull request #2 from tchia04/migrate_to_yml
converted main.workflow to Actions V2 yml files
This commit is contained in:
		
							
								
								
									
										8
									
								
								.github/main.workflow
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/main.workflow
									
									
									
									
										vendored
									
									
								
							@@ -1,8 +0,0 @@
 | 
			
		||||
workflow "Trigger: Push" {
 | 
			
		||||
  on = "push"
 | 
			
		||||
  resolves = ["Shellcheck"]
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
action "Shellcheck" {
 | 
			
		||||
  uses = "ludeeus/action-shellcheck@master"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										10
									
								
								.github/workflows/push.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								.github/workflows/push.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
on: push
 | 
			
		||||
name: 'Trigger: Push'
 | 
			
		||||
jobs:
 | 
			
		||||
  shellcheck:
 | 
			
		||||
    name: Shellcheck
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@master
 | 
			
		||||
    - name: Shellcheck
 | 
			
		||||
      uses: ludeeus/action-shellcheck@master
 | 
			
		||||
		Reference in New Issue
	
	Block a user