forked from tinovyatkin/action-php-codesniffer
    
        
        - 
                Notifications
    You must be signed in to change notification settings 
- Fork 0
Host a working version #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Open
      
      
            vmcj
  wants to merge
  8
  commits into
  DOMjudge:master
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
vmcj:master
  
      
      
   
  
    
  
  
  
 
  
      
    base: master
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Open
                    Changes from 4 commits
      Commits
    
    
            Show all changes
          
          
            8 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      47ebae2
              
                Thenabeel fixed the build
              
              
                thenabeel db95e8a
              
                Accept option to pass on codestyle errors.
              
              
                vmcj 7e12216
              
                Dist is needed to deploy the github action.
              
              
                vmcj d73656c
              
                pinpoint phpcs version
              
              
                vmcj 5ebea08
              
                fully ignore failure
              
              
                vmcj be514de
              
                See if this works
              
              
                vmcj e1662a7
              
                disable action
              
              
                vmcj 4aeefe4
              
                Retrigger
              
              
                vmcj File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -96,4 +96,5 @@ Thumbs.db | |
|  | ||
| # Ignore built ts files | ||
| __tests__/runner/* | ||
| lib/**/* | ||
| lib/**/* | ||
|  | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Large diffs are not rendered by default.
      
      Oops, something went wrong.
      
    
  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -37,4 +37,4 @@ async function run(): Promise<void> { | |
| } | ||
| } | ||
|  | ||
| run(); | ||
| void run(); | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -12,6 +12,10 @@ export function runOnCompleteFiles(files: string[]): number { | |
| const standard = core.getInput('standard'); | ||
| if (standard) args.push(`--standard=${standard}`); | ||
|  | ||
| const failOnError = core.getInput('fail_on_errors'); | ||
| if (failOnError == 'false' || failOnError === 'off') { | ||
| args.push('--runtime-set ignore_errors_on_exit 1'); | ||
| } | ||
| const failOnWarning = core.getInput('fail_on_warnings'); | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Such consistency by the original author... | ||
| if (failOnWarning == 'false' || failOnWarning === 'off') { | ||
| args.push('--runtime-set ignore_warnings_on_exit 1'); | ||
|  | ||
            Binary file not shown.
          
    
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really great to use double negatives in variable names, but given that
dontFailOnWarningalready exists, meh.Although given that this is later only used as
!dontFailOnErrorI think it's actually better to simply name itfailOnError.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree but the original author already had this, I only intended to add a "copy" which works the same as the warning option.