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; }