Skip to content

Commit

Permalink
update status to succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
mw-kapilg committed Aug 30, 2024
1 parent 1bed2fb commit c07899a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function getSummaryRows(buildSummary: string): any[] {
} else if (t.skipped) {
return [t.name, 'πŸ”΅ Skipped' + ' (' + interpretSkipReason(t.skipReason) + ')', t.description, t.duration];
} else {
return [t.name, '🟒 Successful', t.description, t.duration];
return [t.name, '🟒 Succeeded', t.description, t.duration];
}
});
return rows;
Expand Down
2 changes: 1 addition & 1 deletion src/buildSummary.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('summaryGeneration', () => {
['Task 2', 'πŸ”΅ Skipped (user requested)', 'Task 2 description', '00:00:20'],
['Task 3', 'πŸ”΅ Skipped (dependency failed)', 'Task 3 description', '00:00:20'],
['Task 4', 'πŸ”΅ Skipped (up-to-date)', 'Task 4 description', '00:00:20'],
['Task 5', '🟒 Successful', 'Task 5 description', '00:00:30']
['Task 5', '🟒 Succeeded', 'Task 5 description', '00:00:30']
]);
});

Expand Down

0 comments on commit c07899a

Please sign in to comment.