We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4d449 commit c6f7f8eCopy full SHA for c6f7f8e
1 file changed
src/extension.ts
@@ -37,8 +37,8 @@ export async function activate(context: vscode.ExtensionContext) {
37
38
log("Activating GitHub Actions extension...");
39
40
+ // Set signed-in context before other initializations use the session
41
await vscode.commands.executeCommand("setContext", "github-actions.signed-in", false);
- registerSignIn(context);
42
43
// Prefetch git repository origin url
44
await getGitHubContext();
@@ -79,6 +79,8 @@ export async function activate(context: vscode.ExtensionContext) {
79
registerPinWorkflow(context);
80
registerUnPinWorkflow(context);
81
82
+ registerSignIn(context);
83
+
84
// Log providers
85
context.subscriptions.push(
86
vscode.workspace.registerTextDocumentContentProvider(LogScheme, new WorkflowStepLogProvider())
0 commit comments