From 349874070db12da622d114298fdecd23a9bcd2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20All=C3=A8ne?= Date: Thu, 3 Aug 2023 06:39:45 +0000 Subject: [PATCH] Adding debug on top of de867eb09a98162315a63c026d326963c9f6cce5 --- action.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.js b/action.js index f2a731c09..8e8b69cca 100644 --- a/action.js +++ b/action.js @@ -362,7 +362,10 @@ exports.action = async function action() { try { return await actionImpl(); } catch (error) { - console.error(error); + console.error( + "Caught error while running action, is the Asana ticket in the Current Sprint board?" + ); + console.error(error, JSON.stringify(error.value)); core.setFailed(error.message); throw error; }