Skip to content

Commit

Permalink
Update internal/scm/bitbucketcloud/bitbucket_cloud.go
Browse files Browse the repository at this point in the history
Co-authored-by: Johan Lindell <johan@lindell.me>
  • Loading branch information
gcase555 and lindell authored Jun 12, 2024
1 parent 3340226 commit 73a4afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scm/bitbucketcloud/bitbucket_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (bbc *BitbucketCloud) UpdatePullRequest(ctx context.Context, repo scm.Repos
// Note the specs of the bitbucket client here, reviewers field must be UUID of the reviewers, not their usernames
prOptions := &bitbucket.PullRequestsOptions{
ID: fmt.Sprintf("%d", bbcPR.number),
Owner: bbc.workspaces[0],
ID: fmt.Sprint(bbcPR.number),
RepoSlug: repoSlug[4],
Title: updatedPR.Title,
Description: updatedPR.Body,
Expand Down

0 comments on commit 73a4afe

Please sign in to comment.