Do not check for unsupported null value

Yaml does not support null
This commit is contained in:
Andrew McCloud 2022-01-27 08:01:25 -08:00 committed by GitHub
parent 7802acf3bf
commit 593e96b516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ const workspace = process.env.GITHUB_WORKSPACE;
console.log('version action after final decision:', version);
// case: if nothing of the above matches
if (version === null) {
if (!version) {
exitSuccess('No version keywords found, skipping bump.');
return;
}