ci(build.yaml): add a guard step to skip builds for PRs targeting master or dev branches
This commit is contained in:
		@@ -4,6 +4,9 @@ on: pull_request
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
 | 
					    # Skip if PR base is master/dev
 | 
				
			||||||
 | 
					    if: github.base_ref != 'master' && github.base_ref != 'dev'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user