Skip to content

Commit

Permalink
fix: log pipeline data
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha committed May 12, 2021
1 parent f33f740 commit 9aa587c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/buildkite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export async function buildkiteReadPipelines(
paginate: { all },
} = gotInstance(config);

return all<Pipeline>('pipelines?page=1&per_page=100');
const pipelines = all<Pipeline>('pipelines?page=1&per_page=100');
logger.debug('All pipelines: %o', pipelines);
return pipelines;
}

/**
Expand Down

0 comments on commit 9aa587c

Please sign in to comment.