We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c392b commit fd57cc9Copy full SHA for fd57cc9
1 file changed
extensions/ql-vscode/src/config.ts
@@ -359,7 +359,7 @@ export async function setRemoteControllerRepo(repo: string | undefined) {
359
}
360
361
/**
362
- * The branch of "github/codeql-variant-analysis-action/" to use.
+ * The branch of "github/codeql-variant-analysis-action" to use with the "Run Variant Analysis" command.
363
* Default value is "main".
364
* Note: This command is only available for internal users.
365
*/
@@ -368,7 +368,3 @@ const ACTION_BRANCH = new Setting('actionBranch', REMOTE_QUERIES_SETTING);
368
export function getActionBranch(): string {
369
return ACTION_BRANCH.getValue<string>() || 'main';
370
371
-
372
-export async function setActionBranch(branch: string | undefined) {
373
- await ACTION_BRANCH.updateValue(branch, ConfigurationTarget.Global);
374
-}
0 commit comments