diff --git a/cmd/pkgdashcli/main.go b/cmd/pkgdashcli/main.go index 4aa71d2..04ad07e 100644 --- a/cmd/pkgdashcli/main.go +++ b/cmd/pkgdashcli/main.go @@ -287,7 +287,7 @@ func giteaPullRequest(ctx context.Context, cfg *Config, branch string, mods map[ logger.Fatalf(ctx, "failed to reset repo branch: %v", err) } - if err = wtree.PullContext(&git.PullOptions{Force: true, RemoteName: "origin"}); err != nil { + if err = wtree.PullContext(ctx, &git.PullOptions{Force: true, RemoteName: "origin"}); err != nil { logger.Fatalf(ctx, "failed to pull repo: %v", err) }