#8 skip update is branch exist.
This commit is contained in:
parent
868fc519ce
commit
5e4d93cbe1
@ -270,6 +270,9 @@ func Execute(ctx context.Context, gitSource source.SourceControl, mvs map[string
|
|||||||
logger.Debugf(ctx, fmt.Sprintf("Start close for %s", path))
|
logger.Debugf(ctx, fmt.Sprintf("Start close for %s", path))
|
||||||
for _, branch := range cfg.Branches {
|
for _, branch := range cfg.Branches {
|
||||||
if err := gitSource.RequestClose(ctx, branch, path); err != nil {
|
if err := gitSource.RequestClose(ctx, branch, path); err != nil {
|
||||||
|
if strings.Contains(err.Error(), "already exists") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
logger.Fatal(ctx, fmt.Sprintf("failed to close pr: %v", err))
|
logger.Fatal(ctx, fmt.Sprintf("failed to close pr: %v", err))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user