Skip to content

Commit

Permalink
fix(build-status): map 'fetching' to "Running"
Browse files Browse the repository at this point in the history
  • Loading branch information
tsimbalar committed Feb 16, 2021
1 parent 1b5ad56 commit d9bf6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/infra/codemagic/WorkflowRunRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class WorkflowRunRepository implements IWorkflowRunRepository {
case 'preparing':
return 'Queued';
case 'fetching':
return 'Queued';
return 'Running';
case 'building':
return 'Running';
case 'publishing':
Expand Down

0 comments on commit d9bf6aa

Please sign in to comment.