Questions tagged [github-enterprise]

GitHub Enterprise is a web-based commercial hosting service for software development projects that use the Git revision control system.

GitHub Enterprise is a web-based commercial hosting service for software development projects that use the Git revision control system.

240 questions
0
votes
1 answer

How to list the private repositories via GitHub API on Github enterprise

I'm trying to get a list of an organisation's repositories, including private ones. The thing is, we have an enterprise deployment. I've tried the solutions in How to list organization's private repositories via GitHub API?, but they're all related…
Leonardo
  • 1,533
  • 17
  • 28
0
votes
1 answer

Enabling .dev functionality on github enterprise

On normal GitHub there is a possibility to go to a repo in browser and either press . or change the domain to .dev and it will open code editor in the browser. May I know, how can I enable this .dev functionality on the GitHub enterprise. Looking…
Mohammad Saad
  • 1,935
  • 10
  • 28
0
votes
0 answers

Http error 403 when trying to request a user's GitHub identity

I'm trying to get a token from my GitHubApp using the step by step tutorial on GitHub. Step 1 is to get the code with http GET https://{GitHubEntreprise}/login/oauth/authorize URL url = new…
0
votes
0 answers

How to find the commit in a mirrored git repo which is exactly at the middle of commits count?

Context: Migrating huge repos (size>2GB) from GHES to GHEC. Problem: I have a repo which is of size 3.3 GB which needs to be mirror cloned and pushed to GHEC. When pushing the repo to GHEC, I'm getting the below error. remote: fatal: pack exceeds…
Underoos
  • 4,708
  • 8
  • 42
  • 85
0
votes
0 answers

React, github enterprise, getting blank page publishing on ghpages

I'm new to react! I have a github enterprise account, and I'm trying to publish on GH pages a demo of the app for my company. On local server it works but when I publish ( npm run build ) I always get a blank page. I have updated the home in the…
Dany74m
  • 3
  • 2
0
votes
0 answers

Tag/release title merged with last commit subject

While creating releases in a repository on a private GitHub Enterprise, I notice a strange behaviour. Unfortunately I can't upload screenshots due to a firewall/security policy but I will describe it. 1. Normal behaviour I commit a modification on…
Steens
  • 108
  • 8
0
votes
1 answer

Can I exchange a github access token with raw file token

Does anyone know if there is any information about how the raw tokens are created? TLDR is that I want to create links to files (specifically images) from private repos with the raw token attached. I need this to happen automatically, I do not want…
Daniel
  • 471
  • 6
  • 16
0
votes
0 answers

How to connect AWS amplify with github enterprice repository without github actions?

I'm trying to setup aws amplify for Nextjs App but i'm unable to connect my repository since it's in Github enterprise. I want to try this without Github Actions plugins. is there way to achieve this ?
0
votes
0 answers

How to get users in Enterprise Github org?

const users = await octokit.users.list(); How can you use octokit to list users in a organization? For example if your enterprise github is github.your-company.com and within this github you have multiple organization how do you display users per…
deagleshot
  • 175
  • 7
0
votes
0 answers

GitHub Action build .Net Application Run failed

I am new to GitHub Actions, I have a Visual Basic .Net program and I have created it as Repository in GitHub. After that, I have create a Action to automate build the application when run it. The .yml file content as below: name: .NET on: …
Hao
  • 103
  • 1
  • 2
  • 8
0
votes
0 answers

Access a GitHub file via Github Enterprise GraphQL

this graphQL query works for me through the GitHub GraphQL API: query { repository(owner: "MY_Org", name: "My_Repo") { object(expression: "master:README.md") { ... on Blob { text } } …
jWolf
  • 153
  • 1
  • 1
  • 6
0
votes
1 answer

Swift Package Collections doesn't work with an Entreprise GitHub account

I am trying to generate a package collections from a GitHub entreprise account, using the command line (follwing the steps on the official doc): package-collection-generate packages.json collection.json When I ran this command, the Terminal ask me…
raed
  • 4,887
  • 4
  • 30
  • 49
0
votes
0 answers

Is there an app to create automated changelogs based on Github Pull Request descriptions?

I want to create a changelog that pulls certain info from each Pull Request, which will have a description template for the user to fill out the info. I found github-changelog-generator and a bunch of alternatives but seems like most of them are…
bnykpp
  • 55
  • 1
  • 5
0
votes
0 answers

Unable to authenticate via PAT token GitHub API for GitHub Enterprise version when SAML SSO is enabled

I'm pretty new for GitHub API usage. I'm trying to get GitHub pull request data through API from my org.'s enterprise github enterprise where SAML SSO is enabled. I have generated Private Access Token for the same. But I'm unable to get correct…
0
votes
0 answers

GitHub Self Hosted Runner Failing to POST Logs

I've an organisation-level self hosted runner on an Ubuntu 22.04 host. It's successfully authenticated with the organisation and some jobs run successfully. However, logs aren't being sent from the runner to GitHub Enterprise, job success or…