Do not check for unsupported null value
Yaml does not support null
This commit is contained in:
parent
7802acf3bf
commit
593e96b516
2
index.js
2
index.js
|
@ -118,7 +118,7 @@ const workspace = process.env.GITHUB_WORKSPACE;
|
||||||
console.log('version action after final decision:', version);
|
console.log('version action after final decision:', version);
|
||||||
|
|
||||||
// case: if nothing of the above matches
|
// case: if nothing of the above matches
|
||||||
if (version === null) {
|
if (!version) {
|
||||||
exitSuccess('No version keywords found, skipping bump.');
|
exitSuccess('No version keywords found, skipping bump.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue