From 5e2dc53ff9593d3aaf35ce395419a9110918f582 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Mon, 20 Jul 2026 17:03:26 -0500 Subject: [PATCH] fix(opencode): clarify Copilot login domain --- packages/opencode/src/plugin/github-copilot/copilot.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/opencode/src/plugin/github-copilot/copilot.ts b/packages/opencode/src/plugin/github-copilot/copilot.ts index 739f8ce445..aaac528d6b 100644 --- a/packages/opencode/src/plugin/github-copilot/copilot.ts +++ b/packages/opencode/src/plugin/github-copilot/copilot.ts @@ -205,17 +205,17 @@ export async function CopilotAuthPlugin(input: PluginInput): Promise { { type: "select", key: "deploymentType", - message: "Select where your GitHub account is hosted", + message: "Select GitHub login domain", options: [ { - label: "GitHub.com", + label: "github.com", value: "github.com", - hint: "Including Copilot Business or Enterprise", + hint: "Default", }, { - label: "GitHub Enterprise host", + label: "Custom domain", value: "enterprise", - hint: "GHE.com or self-hosted", + hint: "GHE.com or GitHub Enterprise Server", }, ], },