How to get self Hosted Docker to render GitHub badges #7106
-
Beta Was this translation helpful? Give feedback.
Answered by
calebcartwright
Oct 13, 2021
Replies: 1 comment 3 replies
-
|
Sounds like another case of #6910. You'd probably want to do |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


We provide a lot of GitHub related badges (I believe the most of any service), which means we interface with a decent chunk of GitHub's API surface. Historically, we'd exclusively relied on GitHub's Rest/v3 APIs, but in more recent times have added new badges and even converted a couple of the older ones to use the GraphQL/v4 endpoint (sometimes because it's required, and other times because it was beneficial for us to do so).
That works great for GitHub's cloud/SaaS offerings, including Enterprise Cloud. However, as in noted #6910, it's a challenge for users that are self-hosting a Badge server and trying to generate badges that are pulling from a GitHub Enterprise Server (ES) instance b…