Skip to content

Commit bea4f70

Browse files
committed
adding debug info
1 parent c875d6f commit bea4f70

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ async function run(): Promise<void> {
2929
if(listResp.status != 200) throw new Error(`Got HTTP ${listResp.status} calling list workflows API 💩`)
3030

3131
// Debug response if ACTIONS_STEP_DEBUG is enabled
32+
core.debug('### START List Workflows response data')
3233
core.debug(listResp.data)
34+
core.debug('### END: List Workflows response data')
3335

3436
// Locate workflow by name as we need it's id
3537
const foundWorkflow = listResp.data.workflows.find((wf: Record<string, string>) => {

0 commit comments

Comments
 (0)