From 2c1c295719bf6edb3462caf46070c3e7f2133206 Mon Sep 17 00:00:00 2001 From: Alex Fishman Date: Fri, 4 Sep 2026 17:45:02 -0700 Subject: [PATCH 1/2] docs(integrations): fix GitHub personal-token instructions to not ask for a password MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Personal token" auth section said "Provide username and password." GitHub has not accepted account passwords for this kind of integration since 2021 — PATs are mandatory. Every other token-based provider page in this docs set says "paste the generated token"; a user following this literally would enter their real GitHub password and fail. Co-Authored-By: Claude Sonnet 5 --- docs/integrations/providers/github/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/providers/github/index.md b/docs/integrations/providers/github/index.md index e9415fb..1001418 100644 --- a/docs/integrations/providers/github/index.md +++ b/docs/integrations/providers/github/index.md @@ -21,7 +21,7 @@ Select "Personal token" in the first step of integration wizard. Click "Next". ![Select personal token authentication](wz_step1_token.png) -Provide username and password. +Provide your GitHub username and the personal access token you just generated (as the password). ![Provide authentication info](wz_step2_token.png) From dece535d430d849cc91506495349fc057a25f6f2 Mon Sep 17 00:00:00 2001 From: Alex Fishman Date: Fri, 4 Sep 2026 17:51:11 -0700 Subject: [PATCH 2/2] docs(integrations): correct GitHub token step wording, no username field Follow-up to the previous commit on this branch. Checked the actual wizard screenshot (wz_step2_token.png): the real dialog has a single "Personal token" field and no username field at all, matching GitLab's equivalent step. The prior fix ("Provide your GitHub username and the personal access token...") invented a username field that doesn't exist in the UI. Corrected to match what the screenshot actually shows and the phrasing convention used by every other token-based provider page ("paste generated token"). Co-Authored-By: Claude Sonnet 5 --- docs/integrations/providers/github/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/providers/github/index.md b/docs/integrations/providers/github/index.md index 1001418..4599a43 100644 --- a/docs/integrations/providers/github/index.md +++ b/docs/integrations/providers/github/index.md @@ -21,7 +21,7 @@ Select "Personal token" in the first step of integration wizard. Click "Next". ![Select personal token authentication](wz_step1_token.png) -Provide your GitHub username and the personal access token you just generated (as the password). +Paste the personal access token you just generated. ![Provide authentication info](wz_step2_token.png)