Replies: 1 comment
-
|
I'm waiting for this! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Please add support for GitHub Enterprise Server (GHES) in Auto-Claude so the tool can be used with self-hosted GitHub instances (e.g.,
https://github.company.tld) in addition togithub.com.Problem / Motivation
Many organizations run GHES for security/compliance and cannot use GitHub.com. Today, Auto-Claude appears to assume GitHub.com defaults (API base URL, auth endpoints, clone URLs, etc.), which prevents adoption in enterprise environments.
Proposed Solution
Introduce a configurable GitHub host and derive all GitHub-related URLs from it:
GITHUB_HOST(e.g.,github.company.tld)GITHUB_BASE_URL(e.g.,https://github.company.tld)GITHUB_API_URL(e.g.,https://github.company.tld/api/v3)Implementation notes (suggested)
Centralize URL building
/api/v3)Token authentication
Authorization: token <PAT>(orBearerif you already use it).Make it easy to configure
Documentation
github.company.tldhttps://github.company.tld/api/v3Acceptance Criteria
GITHUB_HOST(or equivalent) is set:Additional Context
GHES differs from GitHub.com primarily via the REST API base path (
/api/v3) and hostnames. This feature would unlock enterprise usage without changing core functionality.Beta Was this translation helpful? Give feedback.
All reactions