Skip to content

Commit

Permalink
debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
ichengchang committed Aug 28, 2023
1 parent 4a132b4 commit 0f797cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10147,8 +10147,8 @@ class WorkflowHandler {
ref: this.ref,
filter: 'latest'
});
core.info('result length=' + result.length);
core.info('result=' + result);
core.info('result.total_count=' + result.total_count);
core.info('result.check_runs[0].id=' + result.check_runs[0].id);
if (result.length == 0) {
throw new Error('Run not found');
}
Expand Down
4 changes: 2 additions & 2 deletions src/workflow-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ export class WorkflowHandler {
filter: 'latest'
});

core.info('result length='+result.length);
core.info('result='+result);
core.info('result.total_count='+result.total_count);
core.info('result.check_runs[0].id='+result.check_runs[0].id);

if (result.length == 0) {
throw new Error('Run not found');
Expand Down

0 comments on commit 0f797cb

Please sign in to comment.