Skip to content

Commit e011061

Browse files
[fix] Support setting upload name in Robin
1 parent f4573b6 commit e011061

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ApiClient.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export type CloudUploadRequest = {
2727
}
2828

2929
export type RobinUploadRequest = {
30+
benchmarkName?: string
3031
projectId: string
3132
repoOwner?: string
3233
repoName?: string

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ const run = async () => {
8888
/**
8989
* If project Exist - Its Robin
9090
*/
91-
info('Uploading to Robin Basic')
91+
info('Uploading to Robin')
9292
const request: RobinUploadRequest = {
93+
benchmarkName: name,
9394
projectId: projectId,
9495
repoOwner: repoOwner,
9596
repoName: repoName,

0 commit comments

Comments
 (0)