#8 skip path if branch exists #12

Merged
vtolstov merged 90 commits from kgorbunov/pkgdash:master into master 2024-04-03 08:28:17 +03:00
4 changed files with 0 additions and 10 deletions
Showing only changes of commit 8d2394777e - Show all commits

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
}