Uses of Class
io.github.coho04.githubapi.entities.repositories.GHRepository
Packages that use GHRepository
Package
Description
-
Uses of GHRepository in io.github.coho04.githubapi
Methods in io.github.coho04.githubapi that return types with arguments of type GHRepositoryModifier and TypeMethodDescriptionSelfUser.listCreatedRepositories()Returns a list of repositories created by the user.SelfUser.listRepositoriesWithAccess()Returns a list of repositories the user has access to. -
Uses of GHRepository in io.github.coho04.githubapi.builders
Methods in io.github.coho04.githubapi.builders that return GHRepositoryModifier and TypeMethodDescriptionGHFileBuilder.getRepository()Returns the repository where this file will be committed.Constructors in io.github.coho04.githubapi.builders with parameters of type GHRepositoryModifierConstructorDescriptionGHFileBuilder(GHRepository repository, GHBranch branch, Github github) Constructs a new GHFileBuilder object for a given repository and branch.GHFileBuilder(GHRepository repository, GHBranch branch, String path, String content, String message, Github github) Constructs a new GHFileBuilder object with all properties set.GHFileBuilder(GHRepository repository, Github github) Constructs a new GHFileBuilder object for a given repository.GHFileBuilder(GHRepository repository, Github github, String sha) Constructs a new GHFileBuilder object for a given repository, GitHub instance, and SHA. -
Uses of GHRepository in io.github.coho04.githubapi.entities
Methods in io.github.coho04.githubapi.entities that return GHRepositoryModifier and TypeMethodDescriptionGHOrganisation.findRepositoryByName(String name) Finds a repository by its name within the organization.GHUser.findRepositoryByName(String name) Finds and returns a repository by its name for the current user.GHAlert.getRepository()Returns the repository of the alert.Methods in io.github.coho04.githubapi.entities that return types with arguments of type GHRepositoryModifier and TypeMethodDescriptionGHOrganisation.getPullRequests()Returns a list of pull requests in the organization.GHOrganisation.getRepositories()Returns a list of repositories within the organization.GHOrganisation.getRepositorysWithOpenPullRequests()Returns a list of repositories with open pull requests in the organization.GHUser.listRepositories()Fetches and returns a list of repositories owned by the current user.GHOrganisation.listSecretRepositorys()Returns a list of repositories associated with a specific secret in the organization.GHOrganisation.listVariableRepositorys(String name) Returns a list of repositories associated with a specific variable in the organization. -
Uses of GHRepository in io.github.coho04.githubapi.entities.repositories
Methods in io.github.coho04.githubapi.entities.repositories that return GHRepositoryModifier and TypeMethodDescriptionGHFile.getRepository()Returns the GHRepository instance associated with this file.static GHRepositoryGHRepository.getRepository(Github github, String owner, String name) Fetches and returns a GitHub repository based on the provided owner and name.Constructors in io.github.coho04.githubapi.entities.repositories with parameters of type GHRepositoryModifierConstructorDescriptionGHFile(Github github, org.json.JSONObject jsonObject, GHRepository repository) Constructs a new GHFile instance with the provided JSON object.