update workflow

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2023-10-03 00:27:30 +03:00
parent e74cfad61d
commit d60bab3e7b

View File

@ -288,11 +288,12 @@ func giteaPullRequest(ctx context.Context, cfg *Config, branch string, mods map[
}
if err = wtree.PullContext(ctx, &git.PullOptions{
Auth: &httpauth.BasicAuth{Username: envTOKEN, Password: envTOKEN},
Auth: &httpauth.BasicAuth{Username: envTOKEN, Password: envTOKEN},
Depth: 1,
RemoteURL :
Force: true,
RemoteName: "origin"}); err != nil {
// RemoteURL :
Force: true,
RemoteName: "origin",
}); err != nil {
logger.Fatalf(ctx, "failed to pull repo: %v", err)
}