We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aa587c commit 6e1cb45Copy full SHA for 6e1cb45
src/buildkite.ts
@@ -31,7 +31,7 @@ export async function buildkiteReadPipelines(
31
paginate: { all },
32
} = gotInstance(config);
33
34
- const pipelines = all<Pipeline>('pipelines?page=1&per_page=100');
+ const pipelines = await all<Pipeline>('pipelines?page=1&per_page=100');
35
logger.debug('All pipelines: %o', pipelines);
36
return pipelines;
37
}
0 commit comments