You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error while creating repo due to visibility options.
Error message I receive is :
"message":"Invalid visibility. Valid visibilities are: public, private, internal"
source I'm using is :
GHRepository ghRepository = github.getOrganization(request.getOrg())
.createRepository(request.getName())
.description(request.getDesc())
.defaultBranch("main")
.team(ghTeam) //retrieve the team from the Request
.visibility(Visibility.INTERNAL)
.create();
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Error while creating repo due to visibility options.
Error message I receive is :
"message":"Invalid visibility. Valid visibilities are: public, private, internal"
source I'm using is :
Beta Was this translation helpful? Give feedback.
All reactions