Skip to content

Commit

Permalink
Adding debug on top of de867eb
Browse files Browse the repository at this point in the history
  • Loading branch information
callms committed Aug 3, 2023
1 parent de867eb commit 3498740
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.js
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3498740

Please sign in to comment.