From 9aa587c216619a465dbd1f50cbc4dfd85f01e239 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 12 May 2021 14:28:31 +1000 Subject: [PATCH] fix: log pipeline data --- src/buildkite.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/buildkite.ts b/src/buildkite.ts index 3980c99..4147359 100644 --- a/src/buildkite.ts +++ b/src/buildkite.ts @@ -31,7 +31,9 @@ export async function buildkiteReadPipelines( paginate: { all }, } = gotInstance(config); - return all('pipelines?page=1&per_page=100'); + const pipelines = all('pipelines?page=1&per_page=100'); + logger.debug('All pipelines: %o', pipelines); + return pipelines; } /**