Documentation ¶
Overview ¶
Package github provides utilities for talking to github API.
Index ¶
Constants ¶
View Source
const ( // EnvGitProvider is the provider name. EnvGitProvider = "GIT_PROVIDER" // EnvGitOrgName is the git org name. EnvGitOrgName = "GIT_ORG_NAME" // EnvGitRepositoryName is the repository name. EnvGitRepositoryName = "GIT_REPOSITORY_NAME" // EnvGitAccessToken used for accessing private repositories. EnvGitAccessToken = "GIT_ACCESS_TOKEN" )
Variables ¶
This section is empty.
Functions ¶
func NewFactory ¶
func NewFactory() assetsclient.Factory
NewFactory returns a new factory for Github clients.
Types ¶
type GitConfig ¶
type GitConfig struct { GitProvider string GitOrgName string GitRepoName string GitAccessToken string }
GitConfig contains necessary data to connect to github.
func NewGitConfig ¶
NewGitConfig ensures the environment variables required for the operator to run are set. Returns false if any of the required environment variables are not set.
Click to show internal directories.
Click to hide internal directories.