Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client wraps the GitHub client with App authentication
func NewClient ¶
func NewClient(cfg *config.GitHubConfig) (*Client, error)
NewClient creates a new GitHub client with App authentication
func (*Client) GenerateInstallationToken ¶
func (c *Client) GenerateInstallationToken(ctx context.Context, repoURL string) (*github.InstallationToken, error)
GenerateInstallationToken creates an installation token for the repository
func (*Client) ValidateRepositoryURL ¶
ValidateRepositoryURL checks if the repository URL belongs to the configured organization
type GitHubClient ¶
type GitHubClient interface {
ValidateRepositoryURL(repoURL string) error
GenerateInstallationToken(ctx context.Context, repoURL string) (*github.InstallationToken, error)
}
GitHubClient interface defines the methods needed for GitHub operations
Click to show internal directories.
Click to hide internal directories.