diff --git a/command/pullrequest/gitlab.go b/command/pullrequest/gitlab.go index c7dfd18e..4089bc9e 100644 --- a/command/pullrequest/gitlab.go +++ b/command/pullrequest/gitlab.go @@ -63,7 +63,7 @@ func (c *gitlabFetcher) getPullRequest(match matcher.Result) (pullRequest, error func (c *gitlabFetcher) getStatus(pr *gitlab.MergeRequest) prStatus { // https://docs.gitlab.com/ce/api/merge_requests.html - var inReview = false + inReview := false if len(pr.Reviewers) > 0 { inReview = true }