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
2
votes
1 answer

Github actions reusable workflows currently does not support environments. Will my hack stop secrets from working?

I am using outputs on each job as a hack to enable Github environments to control if my reusable workflow runs. My only concern is the "ENV_AWS_ACCESS_KEY_ID" & "ENV_AWS_SECRET_ACCESS_KEY". These secrets are environment specific. How does the…
James Green
  • 195
  • 3
  • 12
2
votes
1 answer

Impact on storage when forking a repository

Scenario: Master repository with 100+ developers working off it Is there a significant impact on Github storage space in the scenario where 100+ developers are forking a parent repo or is it a valid strategy for each developer to have their own fork…
Julian
  • 23
  • 2
2
votes
2 answers

The "Actions" tab on GitHub is missing

I'm trying to create a GitHub action, but the "Actions" tab doesn't exist in my repository: This GitHub documentation page advised navigating to the "Settings" tab, then selecting "Actions" from the left sidebar and enabling them. My next thought…
dalton_b
  • 29
  • 1
  • 7
2
votes
1 answer

Error finding github action after forking to my organization

There is a github action in the github.com/crowdin organization I would like to use in my github Enterprise org. As I can't use it directly (or fork it to my org), I have mirror cloned and mirror pushed it into my GHE organization. When trying to…
nsteiner
  • 121
  • 1
  • 10
2
votes
1 answer

access git blobs via APIs

I am struggling to access my git file using git APIs. official Documentation : https://developer.github.com/v3/git/blobs/ Tha command I execute : curl -v -H "Authorization: token 111111111111111111111111111" -H "Accept: …
UtpMahesh
  • 410
  • 10
  • 25
2
votes
2 answers

‘Jenkinsfile’ found, Met criteria, No automatic build triggered for jenkins, for git branch

I've read the answer from trigger jenkins build on tag creation with multibranch pipeline The error is similar, only difference is that questions is for tag which seems due to not supported at the time of posting. I encountered this error on…
2
votes
1 answer

Create git pre-receive hook to link git commits with jira id

I am trying to create a pre-receive hook in github enterprise. I want to put a check on commit message, that it should contain a jira id (say 'RP-123') along with some text. And that commit shoould be visible in jira as a link to github. Can…
jass
  • 343
  • 3
  • 15
2
votes
0 answers

Adding a remote theme to a GitHub enterprise instance?

I'm happily using a remote theme (like the excellent Just the docs) for my public github pages (like here). It is as simple as adding remote_theme: pmarsceill/just-the-docs to the _config.yml file. Now I wanted to use this for a GitHub Enterprise…
stwissel
  • 20,110
  • 6
  • 54
  • 101
2
votes
1 answer

Is there a way to change an organization owner as a site admin in github enterprise?

We had one of out github enterprise organization owners leave the company recently and he did not transfer ownership to any of the other admins. Is there anyway to change an organization owner as a site admin or will we be forced to migrate all of…
Greg Madro
  • 39
  • 1
  • 7
2
votes
0 answers

Find repositories with no protected branches on GitHub with Python

I have an instance of GitHub Enterprise and I am trying to do an audit of my Organization within GHE of repositories which have no protected branches. I am able to find which repository branches are protected or not using PyGitHub. But I am trying…
2
votes
1 answer

Can I use different author info for Git repo, depending on URL

At work, we have Github Enterprise, but sometimes I also pull from the public Github.com. I need to use my work author info for any Github Enterprise activity, but I don't want to confuse my work credentials with my personal credentials when…
LightCC
  • 9,804
  • 5
  • 52
  • 92
2
votes
1 answer

Github Status API

I am fairly new to setting up complex features of Github, but I would like to make sure code actually builds before a Pull Request can be merged through my Branches (i.e. Feature -> Develop, Develop -> Release, Release -> Master, etc). I found a…
El Guapo
  • 5,581
  • 7
  • 54
  • 82
2
votes
2 answers

How to import git repositories with large files?

Given that GitHub doesn't allow to push files larger than 100 MB, it is not possible to git clone and push a repository with large files into GitHub enterprise. The push fails with a: remote: error: GH001: Large files detected. You may want to try…
Alberto
  • 5,021
  • 4
  • 46
  • 69
2
votes
3 answers

Github Enterprise 2.2 Organization Pages

We have a git enterprise deployment, the URL is git.foo-partners.com. Within that enterprise github deployment, we have organizations, one of which is 'ux'. I want to have an organization github page. From everything that I've found, I'm supposed…
Mike Earley
  • 1,223
  • 4
  • 20
  • 47
2
votes
2 answers

Git track how a commit got into a branch

Is there a way to track how a commit got into a branch? I'm working with git and github enterprise. A couple of days ago, I came across a situation where a commit appears to have gotten from a feature branch ("f") into our first staging branch…
Marcin
  • 48,559
  • 18
  • 128
  • 201