-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathaddVariable.ts
More file actions
55 lines (47 loc) · 1.64 KB
/
addVariable.ts
File metadata and controls
55 lines (47 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import * as vscode from "vscode";
import {EnvironmentVariablesCommandArgs} from "../../treeViews/settings/environmentVariablesNode";
import {RepoVariablesCommandArgs} from "../../treeViews/settings/repoVariablesNode";
type Args = RepoVariablesCommandArgs | EnvironmentVariablesCommandArgs;
export function registerAddVariable(context: vscode.ExtensionContext) {
context.subscriptions.push(
vscode.commands.registerCommand("github-actions.settings.variable.add", async (args: Args) => {
const {gitHubRepoContext} = args;
const name = await vscode.window.showInputBox({
prompt: "Enter name for new variable",
placeHolder: "Variable name",
ignoreFocusOut: true
});
if (!name) {
return;
}
const value = await vscode.window.showInputBox({
prompt: "Enter the new variable value",
ignoreFocusOut: true
});
if (!value) {
return;
}
try {
if ("environment" in args) {
await gitHubRepoContext.client.actions.createEnvironmentVariable({
owner: gitHubRepoContext.owner,
repo: gitHubRepoContext.name,
environment_name: args.environment.name,
name,
value
});
} else {
await gitHubRepoContext.client.actions.createRepoVariable({
owner: gitHubRepoContext.owner,
repo: gitHubRepoContext.name,
name,
value
});
}
} catch (e) {
await vscode.window.showErrorMessage((e as Error).message);
}
await vscode.commands.executeCommand("github-actions.explorer.refresh");
})
);
}