Skip to content

Commit e5a167b

Browse files
committed
v2 update
1 parent ff26ae1 commit e5a167b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) => {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)