We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd4a2e commit 9ebbf1dCopy full SHA for 9ebbf1d
1 file changed
pkg/github/minimal_types.go
@@ -1,7 +1,7 @@
1
package github
2
3
import (
4
- "fmt"
+ "fmt"
5
"strconv"
6
"time"
7
@@ -859,7 +859,7 @@ type MinimalReviewComment struct {
859
860
// MinimalReviewThread is the trimmed output type for PR review thread objects.
861
type MinimalReviewThread struct {
862
- ID string
+ ID string
863
IsResolved bool `json:"is_resolved"`
864
IsOutdated bool `json:"is_outdated"`
865
IsCollapsed bool `json:"is_collapsed"`
@@ -996,7 +996,7 @@ func convertToMinimalReviewThread(thread reviewThreadNode) MinimalReviewThread {
996
}
997
998
return MinimalReviewThread{
999
- ID: fmt.Sprintf("%v", thread.ID)
+ ID: fmt.Sprintf("%v", thread.ID),
1000
IsResolved: bool(thread.IsResolved),
1001
IsOutdated: bool(thread.IsOutdated),
1002
IsCollapsed: bool(thread.IsCollapsed),
0 commit comments