Attempt to fix changed files on CI workflow (#23205)
This commit is contained in:
		
							parent
							
								
									7836906f3e
								
							
						
					
					
						commit
						4443fa8a32
					
				
					 2 changed files with 10 additions and 4 deletions
				
			
		
							
								
								
									
										2
									
								
								.github/workflows/format.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/format.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -36,6 +36,8 @@ jobs:
 | 
			
		|||
    - name: Get changed files
 | 
			
		||||
      id: file_changes
 | 
			
		||||
      uses: tj-actions/changed-files@v42
 | 
			
		||||
      with:
 | 
			
		||||
        use_rest_api: true
 | 
			
		||||
 | 
			
		||||
    - name: Run qmk formatters
 | 
			
		||||
      shell: 'bash {0}'
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										12
									
								
								.github/workflows/lint.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/lint.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -28,6 +28,8 @@ jobs:
 | 
			
		|||
    - name: Get changed files
 | 
			
		||||
      id: file_changes
 | 
			
		||||
      uses: tj-actions/changed-files@v42
 | 
			
		||||
      with:
 | 
			
		||||
        use_rest_api: true
 | 
			
		||||
 | 
			
		||||
    - name: Print info
 | 
			
		||||
      run: |
 | 
			
		||||
| 
						 | 
				
			
			@ -62,10 +64,12 @@ jobs:
 | 
			
		|||
 | 
			
		||||
        qmk format-text ${{ steps.file_changes.outputs.all_changed_files}} || true
 | 
			
		||||
        for file in ${{ steps.file_changes.outputs.all_changed_files}}; do
 | 
			
		||||
          if ! git diff --quiet $file; then
 | 
			
		||||
            echo "File '${file}' Requires Formatting"
 | 
			
		||||
            echo "::error file=${file}::Requires Formatting"
 | 
			
		||||
            exit_code=$(($exit_code + 1))
 | 
			
		||||
          if [[ -f $file ]]; then
 | 
			
		||||
            if ! git diff --quiet $file; then
 | 
			
		||||
              echo "File '${file}' Requires Formatting"
 | 
			
		||||
              echo "::error file=${file}::Requires Formatting"
 | 
			
		||||
              exit_code=$(($exit_code + 1))
 | 
			
		||||
            fi
 | 
			
		||||
          fi
 | 
			
		||||
        done
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue