Merge pull request #23338 from fetch-rewards/bugfix/xcmetrics-excludeci-param

add excludeCI=false param to XCMetrics /build/filter request
This commit is contained in:
Philipp Hugenroth
2024-03-04 18:15:05 +01:00
committed by GitHub
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>;