This commit is contained in:
Gorbunov Kirill Andreevich 2024-04-03 00:19:36 +03:00
parent e3f70e941c
commit 8d2394777e
4 changed files with 0 additions and 10 deletions

View File

@ -268,7 +268,6 @@ func Execute(ctx context.Context, gitSource source.SourceControl, mvs map[string
}
logger.Debugf(ctx, fmt.Sprintf("Update successful for %s", path))
}
logger.Infof(ctx, "PR create for %s - %s", pathMod, mod.Version)
}
case "close":
if cliCfg.Path != "" { // close one dep

View File

@ -34,6 +34,3 @@ func (g *Github) RequestUpdate(ctx context.Context, branch string, path string,
func (g *Github) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, fmt.Errorf("implement me")
}
func (g *Github) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, nil
}

View File

@ -34,6 +34,3 @@ func (g *Gitlab) RequestUpdate(ctx context.Context, branch string, path string,
func (g *Gitlab) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, fmt.Errorf("implement me")
}
func (g *Gitlab) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, nil
}

View File

@ -34,6 +34,3 @@ func (g *Gogs) RequestUpdate(ctx context.Context, branch string, path string, mo
func (g *Gogs) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, fmt.Errorf("implement me")
}
func (g *Gogs) RequestList(ctx context.Context, branch string) (map[string]string, error) {
return nil, nil
}