File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import * as vscode from "vscode" ;
2- import { WorkflowJob , WorkflowRun } from "../model" ;
3- import { GitHubRepoContext } from "../git/repository" ;
4- import { integer } from "vscode-languageclient" ;
5- import { WorkflowRunCommandArgs , WorkflowRunNode } from "../treeViews/shared/workflowRunNode" ;
6- import { WorkflowJobNode } from "../treeViews/shared/workflowJobNode" ;
2+ import { WorkflowJob , WorkflowStep } from "../model" ;
73
8- // export interface OpenWorkflowStepLogsCommandArgs {
9- // gitHubRepoContext: GitHubRepoContext;
10- // job: WorkflowJob;
11- // run: WorkflowRun;
12- // }
4+ export interface WorkflowStepCommandArgs {
5+ job : WorkflowJob ;
6+ step : WorkflowStep ;
7+ }
138
14- export type WorkflowStepCommandArgs = Pick < WorkflowJobNode , "job" > ;
9+ // export type WorkflowStepCommandArgs = Pick<WorkflowJobNode, "job">;
1510
1611export function registerOpenWorkflowStepLogs ( context : vscode . ExtensionContext ) {
1712 context . subscriptions . push (
You can’t perform that action at this time.
0 commit comments