feat: pull request generation

This commit is contained in:
2025-03-06 22:47:02 +01:00
parent 4d6459fae5
commit 367f9f9e70
28 changed files with 1918 additions and 181 deletions

View File

@ -12,12 +12,12 @@ import (
)
func NewIssueHandlerFromConfig(ctx context.Context, conf *config.Config) (*issue.Handler, error) {
issueManager, err := NewIssueManagerFromConfig(ctx, conf)
forgeManager, err := NewForgeManagerFromConfig(ctx, conf)
if err != nil {
return nil, errors.WithStack(err)
}
return issue.NewHandler(issueManager), nil
return issue.NewHandler(forgeManager), nil
}
type authProviderBasedForgeFactory struct {