File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -219,15 +219,15 @@ export async function getWorkflowRunJobSteps(runId: number): Promise<string[]> {
219
219
"Fetched Workflow Run Job Steps:\n" +
220
220
` Repository: ${ config . owner } /${ config . repo } \n` +
221
221
` Workflow Run ID: ${ runId } \n` +
222
- ` Jobs Fetched: [${ jobs . map ( ( job ) => job . id ) . join ( ", " ) } ]` +
222
+ ` Jobs Fetched: [${ jobs . map ( ( job ) => job . id ) . join ( ", " ) } ]\n ` +
223
223
` Steps Fetched: [${ steps . join ( ", " ) } ]` ,
224
224
) ;
225
225
226
226
return steps ;
227
227
} catch ( error ) {
228
228
if ( error instanceof Error ) {
229
229
core . error (
230
- `getWorkflowRunJobs : An unexpected error has occurred: ${ error . message } ` ,
230
+ `getWorkflowRunJobSteps : An unexpected error has occurred: ${ error . message } ` ,
231
231
) ;
232
232
core . debug ( error . stack ?? "" ) ;
233
233
}
You can’t perform that action at this time.
0 commit comments