feature/docker-action #11
@ -168,13 +168,6 @@ func (pr *ProcessRepos) commit(ctx context.Context, area *storage.Area, repo *pr
|
|||||||
return fmt.Errorf("could not add file: %w", err)
|
return fmt.Errorf("could not add file: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
err = pr.git.Commit(ctx, repo)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("could not get diff: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
dryrun := false
|
|
||||||
if !dryrun {
|
|
||||||
status, err := wt.Status()
|
status, err := wt.Status()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -185,6 +178,14 @@ func (pr *ProcessRepos) commit(ctx context.Context, area *storage.Area, repo *pr
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = pr.git.Commit(ctx, repo)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("could not get diff: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
dryrun := false
|
||||||
|
if !dryrun {
|
||||||
|
|
||||||
err = pr.git.Push(ctx, repo)
|
err = pr.git.Push(ctx, repo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("could not push to repo: %w", err)
|
return fmt.Errorf("could not push to repo: %w", err)
|
||||||
|
Loading…
Reference in New Issue
Block a user