From ed8e8a4124beb116bb892b683427bdbed3bb0e70 Mon Sep 17 00:00:00 2001 From: Travis DePrato Date: Wed, 3 May 2023 11:06:23 -0700 Subject: [PATCH] fix: Correct case of JSON meta serialization --- internal/meta/branch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/meta/branch.go b/internal/meta/branch.go index facd4569..51e38db7 100644 --- a/internal/meta/branch.go +++ b/internal/meta/branch.go @@ -81,7 +81,7 @@ type PullRequest struct { // The web URL for the pull request. Permalink string `json:"permalink"` // The state of the pull request (open, closed, or merged). - State githubv4.PullRequestState + State githubv4.PullRequestState `json:"state"` } // GetNumber returns the number of the pull request or zero if the PullRequest is nil.