Questions tagged [github-organizations]

Organizations simplify management of group-owned repositories

Organizations simplify management of group-owned repositories (for example: your company's code), expand on our permissions system, and help focus your GitHub workflow for business and large open source projects.

If you've ever had to manage multiple GitHub accounts, desired a company-specific dashboard, wanted to add read-only collaborators, or needed to give someone else administrative control over one of your repositories, you're going to love Organizations.

And just like the rest of GitHub, Organizations are free for open source.

79 questions
65
votes
9 answers

How to list organization's private repositories via GitHub API?

I'm trying to get a list of an organization's all repositories, including private ones. (Or to be more specific, all of the private repositories a certain user has access to.) Reqesting info for the organization…
Jonik
  • 80,077
  • 70
  • 264
  • 372
24
votes
3 answers

How to get pull request id from Jenkins Pipeline

I'm trying to analyse my source code with Sonar using Jenkins pipelines. To ask Sonar to notify Github with the results I need to specify the Pull Request ID. How can I get this Pull Request ID from Jenkins Pipelines? We are using GitHub…
20
votes
3 answers

GitHub: how do I make a user an admin of an organization?

I need to transfer a repository from a user account to an organization the user is a member of. Per GitHUb's docs, I need to make the user account an admin of the organization first. GitHub's docs describe the different levels of access to an…
mikemaccana
  • 110,530
  • 99
  • 389
  • 494
18
votes
2 answers

How to completely delete OAuth application from GitHub organization?

Going to https://github.com/organizations//settings/oauth_application_policy, titled Third-party application access policy you can "Grant" or "Deny" access to third party applications. But what actions do you need to take to…
Mihail Malostanidis
  • 2,686
  • 3
  • 22
  • 38
18
votes
6 answers

Get list of organizations on GitHub

Is there a workaround to get the list of organizations on GitHub? For example: https://github.com/showcases/open-source-organizations How can we do that via the GitHub API or GitHub search?
Nam Vu
  • 5,669
  • 7
  • 58
  • 90
16
votes
1 answer

Jenkins pipeline code auto trigger with multiple repositories through GitHub Organization Folder Plugin

This question is related to the Jenkins job auto trigger with multiple repositories. Defined 3 repo's to checkout in Jenkinsfile. node('slave'){ git clone github.com/owner/abc.git -b ${env.BRANCH_NAME} git clone github.com/owner/def.git -b…
Nitin
  • 10,101
  • 4
  • 17
  • 34
13
votes
4 answers

Teams that have read access to all repositories of an organization

in my Company, we've got a lot of repositories in one private github organization (not accessible publically). Ideally, all developers should have read access to all repos in that organization, while just having write access to the repositories of…
Matthias
  • 2,622
  • 1
  • 18
  • 29
11
votes
3 answers

How to add custom user roles for a GitHub organisation?

There are two default user roles in an organization on GitHub: "admin" and "member". How to introduce a further role and configure its access rights?
automatix
  • 14,018
  • 26
  • 105
  • 230
8
votes
1 answer

How to checkout ssh remote in github organization Jenkins workflow and use ssh credentials in Jenkinsfile

I have a Github Organisation item in jenkins. On the root of my repository, my Jenkinsfile looks something like this: node { def jenkinsCredsId = 'xxxxxxxx-yyyy-zzzz-aaaa-bbbbbbbbbbbb' stage 'Checkout' checkout scm // I also tried the…
GabLeRoux
  • 16,715
  • 16
  • 63
  • 81
7
votes
1 answer

How can I access the content from my Github Organization's wiki that disappeared?

I am part of a Github Organization that has been using the Wiki feature for documentation in a private repository for over a year. We had created many pages for internal use, but the wiki disappeared in the last week. We use a free organization…
ascendants
  • 2,123
  • 3
  • 11
  • 22
7
votes
1 answer

Limit Github OAuth scope to organization repositories

I'm currently working on setting up Drone for CI and I've already managed to register it as an OAuth app with our Github Enterprise. In our case, the Drone OAuth app is owned by one of the organizations I'm part of. Our organizations host private…
pklndnst
  • 726
  • 2
  • 10
  • 27
7
votes
3 answers

Can a GitHub organization commit code to a repository?

I'm trying to understand, what an "organization" on GitHub actually is -- an independent account with all capabilities of a user account and additionally some specials or just a "repos container", that need a separate user account for user specific…
automatix
  • 14,018
  • 26
  • 105
  • 230
6
votes
3 answers

Is an organisation on GitHub a user or just a repositories container that needs a user?

As GitHub user I can create an organization. What i don't understand -- Is an organisation independent? Is it a repositories container, that needs a (user) account it belongs to or is it for itself an (organization) account GitHub user (and doesn't…
automatix
  • 14,018
  • 26
  • 105
  • 230
5
votes
0 answers

Is it a good practice to use organizations as folders?

I've seen on this question that Github organizations were a solution for "regrouping" repositories, as files in a folder. But while I was reading Github organizations documentation, it appears that organizations were designed to represent a…
Aracthor
  • 5,757
  • 6
  • 31
  • 59
5
votes
1 answer

GitHub: Continuous integration to Azure with organization repository

I'm developing a game. GitHub as my source vault; Azure is my deployment platform. I created an organization for my game, since I hope it will eventually be more than just me working on it. There are two separate repositories within the…
1
2 3 4 5 6