Skip to content

Commit 6612c27

Browse files
authored
Merge pull request #1479 from github/koesie10/improve-controller-repo-prompt
Improve prompot for controller repo
2 parents 269165e + 14c736d commit 6612c27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extensions/ql-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@
288288
"default": "",
289289
"pattern": "^$|^(?:[a-zA-Z0-9]+-)*[a-zA-Z0-9]+/[a-zA-Z0-9-_]+$",
290290
"patternErrorMessage": "Please enter a valid GitHub repository",
291-
"markdownDescription": "[For internal use only] The name of the GitHub repository where you can view the progress and results of the \"Run Variant Analysis\" command. The repository should be of the form `<owner>/<repo>`)."
291+
"markdownDescription": "[For internal use only] The name of the GitHub repository in which the GitHub Actions workflow is run when using the \"Run Variant Analysis\" command. The repository should be of the form `<owner>/<repo>`)."
292292
}
293293
}
294294
},

extensions/ql-vscode/src/remote-queries/run-remote-query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export async function runRemoteQuery(
217217
if (!controllerRepo || !REPO_REGEX.test(controllerRepo)) {
218218
void logger.log(controllerRepo ? 'Invalid controller repository name.' : 'No controller repository defined.');
219219
controllerRepo = await window.showInputBox({
220-
title: 'Controller repository in which to display progress and results of variant analysis',
220+
title: 'Controller repository in which to run the GitHub Actions workflow for this variant analysis',
221221
placeHolder: '<owner>/<repo>',
222222
prompt: 'Enter the name of a GitHub repository in the format <owner>/<repo>',
223223
ignoreFocusOut: true,

0 commit comments

Comments
 (0)