File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,10 @@ export interface IStatusAndConclusion {
1010 conclusion : string ;
1111}
1212
13- export function getAbsoluteIconPath (
14- relativeIconPath : string
15- ) : { light : string | vscode . Uri ; dark : string | vscode . Uri } {
13+ export function getAbsoluteIconPath ( relativeIconPath : string ) : {
14+ light : string | vscode . Uri ;
15+ dark : string | vscode . Uri ;
16+ } {
1617 return {
1718 light : _context . asAbsolutePath ( `resources/icons/light/${ relativeIconPath } ` ) ,
1819 dark : _context . asAbsolutePath ( `resources/icons/dark/${ relativeIconPath } ` ) ,
@@ -46,6 +47,9 @@ function _getIconForWorkflowrun(
4647 case "queued" :
4748 return getAbsoluteIconPath ( "statuses/queued.svg" ) ;
4849
50+ case "waiting" :
51+ return getAbsoluteIconPath ( "statuses/waiting.svg" ) ;
52+
4953 case "inprogress" :
5054 case "in_progress" :
5155 return new vscode . ThemeIcon ( "sync~spin" ) ;
You can’t perform that action at this time.
0 commit comments