add excludeCI=false param to XCMetrics /build/filter request

Signed-off-by: Ryan Clark <r.clark@fetchrewards.com>
This commit is contained in:
Ryan Clark
2024-02-29 12:48:13 -06:00
parent 6ea413c7e8
commit 7984d1ed59
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-xcmetrics': patch
---
Fixed bug in XcMetricsClient where it was not including parameter for excludeCI, which is now a required parameter for XCMetrics.
@@ -70,6 +70,7 @@ export class XcmetricsClient implements XcmetricsApi {
projectName: filters.project,
page,
per: perPage,
excludeCI: false,
});
return (await response.json()) as PaginationResult<Build>;