File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -558,7 +558,7 @@ function run() {
558558 throw new Error ( `Got HTTP ${ listResp . status } calling list workflows API 💩` ) ;
559559 // Debug response if ACTIONS_STEP_DEBUG is enabled
560560 core . debug ( '### START List Workflows response data' ) ;
561- core . debug ( listResp . data ) ;
561+ core . debug ( JSON . stringify ( listResp . data , null , 3 ) ) ;
562562 core . debug ( '### END: List Workflows response data' ) ;
563563 // Locate workflow by name as we need it's id
564564 const foundWorkflow = listResp . data . workflows . find ( ( wf ) => {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ async function run(): Promise<void> {
3030
3131 // Debug response if ACTIONS_STEP_DEBUG is enabled
3232 core . debug ( '### START List Workflows response data' )
33- core . debug ( listResp . data )
33+ core . debug ( JSON . stringify ( listResp . data , null , 3 ) )
3434 core . debug ( '### END: List Workflows response data' )
3535
3636 // Locate workflow by name as we need it's id
You can’t perform that action at this time.
0 commit comments