From 593e96b5164057b5ce77bd8fd5b933216f5b1d77 Mon Sep 17 00:00:00 2001 From: Andrew McCloud Date: Thu, 27 Jan 2022 08:01:25 -0800 Subject: [PATCH] Do not check for unsupported null value Yaml does not support null --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d45da8e..8f122ab 100644 --- a/index.js +++ b/index.js @@ -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; }