Skip to content

Commit ffd5798

Browse files
committed
appease linter
1 parent ae89361 commit ffd5798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/github/pullrequests.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func UpdatePullRequest(getClient GetClientFn, getGQLClient GetGQLClientFn, t tra
350350
err = gqlClient.Query(ctx, &prQuery, map[string]interface{}{
351351
"owner": githubv4.String(owner),
352352
"repo": githubv4.String(repo),
353-
"prNum": githubv4.Int(pullNumber),
353+
"prNum": githubv4.Int(int32(pullNumber)),
354354
})
355355
if err != nil {
356356
return ghErrors.NewGitHubGraphQLErrorResponse(ctx, "Failed to find pull request", err), nil

0 commit comments

Comments
 (0)