From c1b5059916ee1f53d4978fe9c65757d349e62bb4 Mon Sep 17 00:00:00 2001 From: joss Date: Thu, 4 Jul 2024 09:54:35 +0100 Subject: [PATCH] feat: enable error logging on create labels action --- .github/actions/release-create-labels/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/release-create-labels/action.yaml b/.github/actions/release-create-labels/action.yaml index ed02609c..832a47eb 100644 --- a/.github/actions/release-create-labels/action.yaml +++ b/.github/actions/release-create-labels/action.yaml @@ -55,7 +55,7 @@ runs: color: inputs['major-colour'].trim() }); } catch (error) { - //console.log(error); + console.log(error); } try { @@ -66,7 +66,7 @@ runs: color: inputs['minor-colour'].trim() }); } catch (error) { - //console.log(error); + console.log(error); } try { @@ -77,7 +77,7 @@ runs: color: inputs['patch-colour'].trim() }); } catch (error) { - //console.log(error); + console.log(error); } core.setOutput("major", major);