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

Show PR information in main view above the branch log when a branch is selected

This commit is contained in:
Stefan Haller
2025-10-17 14:08:27 +02:00
parent b31421201a
commit f6a80280a0
3 changed files with 38 additions and 1 deletions

View File

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