Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core.setFailed and core.error to include stack trace to make debugging and triaging easier #1948

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export function debug(message: string): void {

/**
* Adds an error issue
* @param message error issue message. Errors will be converted to string via toString()
* @param message error issue message. error.stack will be used for Errors
* @param properties optional properties to add to the annotation.
*/
export function error(
Expand All @@ -254,7 +254,7 @@ export function error(
issueCommand(
'error',
toCommandProperties(properties),
message instanceof Error ? message.toString() : message
message instanceof Error ? message.stack : message
)
}

Expand Down