chore: match the bump commit exactly, reverts should not count (#14207)
This commit is contained in:
		
					parent
					
						
							
								5b48e03c7c
							
						
					
				
			
			
				commit
				
					
						899dd03aa1
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -250,7 +250,7 @@ async function promptForVersion (version) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// function to determine if there have been commits to master since the last release
 | 
					// function to determine if there have been commits to master since the last release
 | 
				
			||||||
async function changesToRelease () {
 | 
					async function changesToRelease () {
 | 
				
			||||||
  let lastCommitWasRelease = new RegExp(`Bump v[0-9.]*(-beta[0-9.]*)?(-nightly[0-9.]*)?`, 'g')
 | 
					  let lastCommitWasRelease = new RegExp(`^Bump v[0-9.]*(-beta[0-9.]*)?(-nightly[0-9.]*)?$`, 'g')
 | 
				
			||||||
  let lastCommit = await GitProcess.exec(['log', '-n', '1', `--pretty=format:'%s'`], gitDir)
 | 
					  let lastCommit = await GitProcess.exec(['log', '-n', '1', `--pretty=format:'%s'`], gitDir)
 | 
				
			||||||
  return !lastCommitWasRelease.test(lastCommit.stdout)
 | 
					  return !lastCommitWasRelease.test(lastCommit.stdout)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue