Skip to content

Commit

Permalink
fix: add missing withPrefix to targetRefName
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyPlane committed May 7, 2024
1 parent 52719d7 commit d8aa464
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private[azurerepos] object PullRequestPayload {
def from(data: NewPullRequestData): PullRequestPayload =
PullRequestPayload(
sourceRefName = withPrefix(data.head),
targetRefName = data.base.name,
targetRefName = withPrefix(data.base.name),
title = data.title,
labels = Option.when(data.labels.nonEmpty)(data.labels),
description = data.body
Expand Down

0 comments on commit d8aa464

Please sign in to comment.