1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-29 22:48:24 +02:00

WIP Add draft state, iterate on UI design

This commit is contained in:
Stefan Haller
2025-10-18 18:06:14 +02:00
parent 3d879bf94a
commit 335cbf7fe6
4 changed files with 61 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ type GithubPullRequest struct {
HeadRefName string `json:"headRefName"`
Number int `json:"number"`
Title string `json:"title"`
State string `json:"state"` // "MERGED", "OPEN", "CLOSED"
State string `json:"state"` // "MERGED", "OPEN", "CLOSED", "DRAFT"
Url string `json:"url"`
HeadRepositoryOwner GithubRepositoryOwner `json:"headRepositoryOwner"`
}