Change Promise<any> to Promise<void> in reRunWorkflow function

This commit is contained in:
ebarrios
2020-09-23 17:11:30 +02:00
parent bd9988d58e
commit 6002842bfb
@@ -31,8 +31,8 @@ export class CloudbuildClient implements CloudbuildApi {
}: {
projectId: string;
runId: string;
}): Promise<any> {
return await fetch(
}): Promise<void> {
await fetch(
`https://cloudbuild.googleapis.com/v1/projects/${encodeURIComponent(
projectId,
)}/builds/${encodeURIComponent(runId)}:retry`,