Skip to content

Commit

Permalink
feat: skipped icon
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-xyz committed Mar 17, 2024
1 parent cf3face commit ede6947
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rendered/assets/gitHub/action-skipped.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/rendered/assets/gitHubIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import actionCanceled from './gitHub/action-canceled.svg?react';
import actionInProgressIcon from './gitHub/action-in-progress.svg?react';
import actionPendingIcon from './gitHub/action-pending.svg?react';
import ActionQueuedIcon from './gitHub/action-queued.svg?react';
import ActionSkippedIcon from './gitHub/action-skipped.svg?react';
import actions from './gitHub/actions.svg?react';

export const ActionsIcon = styled(actions)`
Expand Down Expand Up @@ -84,6 +85,8 @@ export const getStatusIcon = (status: Run['status']) => {
return ActionInProgressIcon;
case 'queued':
return ActionQueuedIcon;
case 'skipped':
return ActionSkippedIcon;
case 'pending':
return ActionPendingIcon;
default:
Expand Down

0 comments on commit ede6947

Please sign in to comment.