File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 140140 {
141141 "command" : " github-actions.workflow.logs" ,
142142 "category" : " GitHub Actions" ,
143- "title" : " View logs" ,
143+ "title" : " View job logs" ,
144144 "when" : " viewItem =~ /job/" ,
145145 "icon" : {
146146 "dark" : " resources/icons/dark/logs.svg" ,
150150 {
151151 "command" : " github-actions.step.logs" ,
152152 "category" : " GitHub Actions" ,
153- "title" : " View logs" ,
153+ "title" : " View step logs" ,
154154 "when" : " viewItem =~ /step/" ,
155155 "icon" : " $(globe)"
156156 },
Original file line number Diff line number Diff line change 11import * as vscode from "vscode" ;
2- import { WorkflowJob , WorkflowStep } from "../model " ;
2+ import { WorkflowStepNode } from "../treeViews/workflows/workflowStepNode " ;
33
4- export interface WorkflowStepCommandArgs {
5- job : WorkflowJob ;
6- step : WorkflowStep ;
7- }
8-
9- // export type WorkflowStepCommandArgs = Pick<WorkflowJobNode, "job">;
4+ type WorkflowStepCommandArgs = Pick < WorkflowStepNode , "job" | "step" | "gitHubRepoContext" > ;
105
116export function registerOpenWorkflowStepLogs ( context : vscode . ExtensionContext ) {
127 context . subscriptions . push (
You can’t perform that action at this time.
0 commit comments