#8 add log fo check pull.

This commit is contained in:
Gorbunov Kirill Andreevich 2024-03-21 15:45:29 +03:00
parent 4ba405adbc
commit 367426a1f9
1 changed files with 3 additions and 1 deletions

View File

@ -145,6 +145,7 @@ func (g *Gitea) RequestOpen(ctx context.Context, branch string, path string, mod
}
for _, pull := range pulls {
logger.Info(ctx, fmt.Sprintf("PULL title - %s | ref - %s", pull.Title, pull.Base.Ref))
if strings.Contains(pull.Title, path) && strings.Contains(pull.Base.Ref, branch) {
logger.Info(ctx, fmt.Sprintf("skip %s as pr already exists %s", path, pull.URL))
return ErrPRExist
@ -175,7 +176,8 @@ func (g *Gitea) RequestOpen(ctx context.Context, branch string, path string, mod
Create: true,
Force: true,
}); err != nil {
logger.Fatal(ctx, fmt.Sprintf("failed to checkout tree: %v", err))
logger.Error(ctx, fmt.Sprintf("failed to checkout tree: %v", err))
return err
} //создаем новую ветку
epath, err := exec.LookPath("go")