Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2023-09-30 01:05:02 +03:00
parent 131c8e3d71
commit 3ef2a5d7ce
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ func giteaPullRequest(ctx context.Context, cfg *Config, mods map[string]modules.
if err != nil {
return err
}
if rsp.StatusCode != http.StatusOK {
if rsp.StatusCode != http.StatusCreated {
buf, _ = io.ReadAll(rsp.Body)
return fmt.Errorf("unknown error: %s", buf)
}