Skip to content

Commit

Permalink
GitLab - Corrected "Closed" status value in UpdateMergeRequest (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
omerzi committed Dec 4, 2023
1 parent 678003d commit 9fe7a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcsclient/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ func mapGitLabPullRequestState(state *vcsutils.PullRequestState) *string {
case vcsutils.Open:
stateStringValue = "reopen"
case vcsutils.Closed:
stateStringValue = "closed"
stateStringValue = "close"
default:
return nil
}
Expand Down

0 comments on commit 9fe7a41

Please sign in to comment.